function createSilverlight(controlHost) {
	Silverlight.createObjectEx({
		source: "swarm.xaml",
		parentElement: controlHost,
		id: "silverlightControl",
		properties: {
		    width: "350",
		    height: "350",
		    version: "1.0",
		    background: "white",
		    isWindowless: "true",
		    enableHtmlAccess: "true"
		},
		events: {}
	});
}
