// JScript File
// Loads the flash movie w/o the annoying ms control around it
function loadFlash(id,width,height,src,wmode)
{
	document.write('<object id="'+id+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" VIEWASTEXT><param name="movie" value="'+src+'"><param name="wmode" value="'+wmode+'"><param name="quality" value="high"><param name="allowScriptAccess" value="sameDomain" /><embed allowscriptaccess="sameDomain" src="'+src+'" quality="high" wmode="'+wmode+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed></object>')
}