///////////////////////////////////////////////////////////////////////////////
//
//  Default.html.js   
//
//  This file is provided by Microsoft as a helper file for websites that
//  incorporate Silverlight Objects. The default parameters below comply with 
//  Silverlight v1.1 Alpha, which exposes 0.95 as its version number.     
//  This file is provided as is.
// 
// © 2007 Microsoft Corporation
//
// This file is licensed as part of the Silverlight 1.0 SDK, for details look here: http://go.microsoft.com/fwlink/?LinkID=89145&clcid=0x409
//
///////////////////////////////////////////////////////////////////////////////
// JScript source code

//contains calls to silverlight.js, examples are below

function createSilverlight()
{
	Silverlight.createObjectEx({
		source: "MainView.xaml",
		parentElement: document.getElementById("SilverlightControlHost"),
		id: "SilverlightControl",
		properties: {
			width: "985",
			height: "565",
			version: "1.1",
			background: "#00000000",
			framerate:"40",
			isWindowless: "true",
			enableHtmlAccess: "true"			
		},
		events: {}
	});
}
