function createSilverlight()
{	
	Silverlight.createObjectEx({
		source: "sl/hardware/page.xaml",
		parentElement: document.getElementById("SilverlightControlHost"),
		id: "SilverlightControl",
		properties: {
			width: "900",
			height: "323",
			frameRate: "24",
			inplaceInstallPrompt:false,
			background: "#00000000",
			isWindowless: "true",
			version: "1.0"
		},
		events: {
			onLoad: null
		}
	});
}

if (!window.Silverlight) 
	window.Silverlight = {};

Silverlight.createDelegate = function(instance, method) {
	return function() {
		return method.apply(instance, arguments);
	}
}
