// JScript source code

//contains calls to silverlight.js, examples are below



function createSilverlight()

{  
    var pe = document.getElementById("SLHost");
    
    //example calls, please replace with calls that match your site's requirements    
    Silverlight.createObject("seo.xaml", pe, "AgControl1",
                                 {width:'640', height:'480', inplaceInstallPrompt:false, background:'MediumBlue', isWindowless:'false', framerate:'24', enableFramerateCounter:false, version:'1.0'},
                                 {onLoad:OnLoad},
                                 null);
                             
                                 
   //Silverlight.createObjectEx({source: 'xaml/piano.xml', parentElement:pe, id:'AgControl1', properties:{width:'1024', height:'530', background:'white', isWindowless:'false', framerate:'24', enableFramerateCounter:false, version:'1.0'}, events:{onError:null, onLoad:null, onResize:null}, context:null});
    
}


     
