function loadmovie(swf)
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="humanflash" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="800" height="600" />\n');
    document.write('<param name="movie" value="' + swf + '" />\n');
    document.write('<param name="quality" value="High" />\n');
    document.write('<embed src="' + swf + '" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="humanflash" width="800" height="600" quality="High" />\n');
    document.write('</object>\n');
    document.write('<script type="text/javascript">detectclient();</script>\n');
}

function detectclient()
{
	var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
	if (is_chrome)
	{
		window.resizeTo(816, 664);
	}
}