function createSilverlight()
{
    
    Silverlight.createObjectEx({
        source: "home/banner/banner.xaml",
        parentElement: document.getElementById("SilverlightControlHost"),
        id: "SilverlightControl",
        properties: {
            width: "615",
            height: "156",
            background:"#fff",
            isWindowless: "false",
            framerate:"30",
            version: "1.0"
        },
        events: {
        }
    });
}


function mainCanvasLoaded(s) {

	var objTextLine1 = s.findName("TextLine1")
	var objTextLine2 = s.findName("TextLine2")
	var objTextLine3 = s.findName("TextLine3")
	var objTextLine4 = s.findName("TextLine4")

	objTextLine1.Text = cstrLine1;
	objTextLine2.Text = cstrLine2;
	objTextLine3.Text = cstrLine3;
	objTextLine4.Text = cstrLine4;
	
	s.findName("Transitions").Begin();   
	s.findName("FadeIn").Begin();   
	s.findName("RollText").Begin();   

	// main=s.findName("mainCanvas")
	// plugin = s.getHost()	

	
}


