///////////////////////////////////////////////////////////////////////////////
//
//  default.html.js
//
// 
// © 2007 Microsoft Corporation. All Rights Reserved.
//
// This file is licensed as part of the Silverlight 1.1 SDK, for details look here: http://go.microsoft.com/fwlink/?LinkID=89145&clcid=0x409
//
///////////////////////////////////////////////////////////////////////////////


function createSilverlight()
{
	Silverlight.createObjectEx({
		source: "browser.xaml",
		parentElement: document.getElementById("agControl1Host"),
		id: "agControl1",
		properties: {
			width: "690",
			height: "480",
			version: "1.1",  
			background: "#00000000",
			framerate:"60",
			isWindowless: 'false',
			enableHtmlAccess: 'true'
		},
		events: {
			onError:null,
			onLoad:HookupControl
		},
		initParams: "host=browser"
	});
}

function HookupControl()
{    
    control = document.getElementById("agControl1")

    InitJScriptPlayer(control.content.JScriptPlayer);
    
    engine = control.content.Engine;
    engine.Run();
}