// JScript source code

//contains calls to silverlight.js, example below loads myxaml.xaml
function createSilverlight()
{
	Sys.Silverlight.createObjectEx({
		source: "Scene.xaml",
		parentElement: document.getElementById("SilverlightControlHost"),
		id: "SilverlightControl",
		properties: {
			width: "500",
			height: "450",
			version: "0.9",
			background: "white"
		},
		events: {}
	});
}


