//Creates the Silverlight object by calling into Silverlight.js.

function createSilverlight()

{                                
                                 
    Silverlight.createObjectEx({
		source: "http://blogs.msdn.com/astrauss/attachment/2673244.ashx", 
		parentElement: document.getElementById("agControl1Host"), 
		id: "SilverlightControl", 
		properties:{
			width: "710px", 
			height: "650px", 
			background: "transparent", 
			isWindowless: "true", 
			framerate: "30", 
			version: "1.1"}, 
		events:{
			onError:null, 
			onLoad:null},
		context:null});
    
}


     
