///////////////////////////////////////////////////////////////////////////////
//
//  CreateSilverlight.js
//
// 
// © 2007 Microsoft Corporation. All Rights Reserved.
//
// This file is licensed as part of the Silverlight 1.1 SDK, for details look here: http://go.microsoft.com/fwlink/?LinkID=89145&clcid=0x409
//
///////////////////////////////////////////////////////////////////////////////

//contains calls to silverlight.js, examples are below



function createSilverlight()

{  
    Silverlight.createObject("Scene.xaml", pe, "wpf",
                             {width:'1000', height:'700', 
                              inplaceInstallPrompt:false, background:'white', 						      isWindowless:'false', framerate:'30', 
                              enableFramerateCounter:false, version:'1.1'},
                                 {onError:null, onLoad:null, onResize:null},
                                 null);
    
}


     
