function ShowFlash(Height,Width,URL,bg,id)
{

    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" \n');
	document.write('width="'+Width+'" \n');
	document.write('height="'+Height+'" \n');
	document.write('id="'+id+'" />\n');
    document.write('<param name="allowScriptAccess" value="sameDomain" /> \n');
    document.write('<param name="movie" value="'+URL+'" /> \n');
	document.write('<param name="wmode" value="transparent" /> \n');
	document.write('<param name="menu" value="false" /><param name="quality" value="high" /><param name="bgcolor" value="#'+bg+'" /> \n');
	document.write('<embed src="'+URL+'" menu="false" quality="high" bgcolor="#'+bg+'" width="'+Width+'" height="'+Height+'" name="'+id+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent"/> \n');
    document.write('</object> \n');	
}
