﻿// JScript File
function createMySilverlightPlugin()
{  
        
    Silverlight.createObject(
        "EasyControls/myxaml.xaml",                  // Source property value.
        parentElement,                  // DOM reference to hosting DIV tag.
        "mySilverlightPlugin",         // Unique plugin ID value.
        {                               // Per-instance properties.
            width:'100%',                // Width of rectangular region of 
                                        // plugin area in pixels.
            height:'100%',               // Height of rectangular region of 
                                        // plugin area in pixels.
            inplaceInstallPrompt:false, // Determines whether to display 
                                        // in-place install prompt if 
                                        // invalid version detected.
            background:'#D6FFFF',       // Background color of plugin.
            isWindowless:'false',       // Determines whether to display plugin 
                                        // in Windowless mode.
            framerate:'24',             // MaxFrameRate property value.
            version:'1.0'               // Silverlight version to use.
        },
        {
            onError:null,               // OnError property value -- 
                                        // event handler function name.
            onLoad:null                 // OnLoad property value -- 
                                        // event handler function name.
        },
        null);                          // Context value -- event handler function name.
}
function createSilverlightCustomerList()
{
	Silverlight.createObjectEx({
		source: "EasyControls/Page.xaml",
		parentElement: parentElement,
		id: "SilverlightCustomerControl",
		properties: {
			width: "480",
			height: "495",
			version: "1.0"
		},
		events: {
			onLoad: null       // Silverlight.createDelegate(scene, scene.handleLoad)
		}
	});
}


