function loadFlash(url,wmode,width,height,name)
{
	document.writeln ('<object	');
	document.writeln ('		classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.writeln ('		codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"');
	document.writeln ('		width="'+width+'" height="'+height+'" id="map" align="middle">');
	document.writeln ('		<param name="allowScriptAccess" value="sameDomain" />');
	document.writeln ('		<param name="movie" value="'+url+'" />');
	document.writeln ('		<param name="wmode" value="'+wmode+'" />');
	document.writeln ('		<param name="quality" value="high" />'); 
	document.writeln ('		<param name="bgcolor" value="#ffffff" />');
	document.writeln ('		<embed src="'+url+'" quality="high" bgcolor="#ffffff" width="'+width+'"');
	document.writeln ('			height="'+height+'" name="map" align="middle"');
	document.writeln ('			allowScriptAccess="sameDomain" type="application/x-shockwave-flash"');
	document.writeln ('			wmode="'+wmode+'"');
	document.writeln ('			pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>	');
	
	/*
	if(url.indexOf("BFS")!=-1 ||url.indexOf("gd")!=-1)
	{
		xAddEventListener(window,"load",ZoomIt);
	}else if(url.indexOf("flashmap/B")!=-1)
	{
		xAddEventListener(window,"load",ZoomIt2);
	}
	*/
}
function ZoomIt()
{
	document.map.Zoom(95);
}
function ZoomIt2()
{
	document.map.Zoom(97);
}
