// Flash Embed Function
function fn_EmbedFlashPlayer(id, url, w, h, wmode)
{
	try
	{
		document.write('<object width="'+w+'" height="'+h+'" id="'+id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0">');
		document.write('	<param name="movie" value="'+url+'" />');
		document.write('	<param name="wmode" value="'+wmode+'" />');
		document.write('	<param name="allowScriptAccess" value="always" />');
		document.write('	<param name="quality" value="high" />');
		document.write('	<param  name="menu" value="false">');
		document.write('	<embed src="'+url+'" quality="high" wmode="'+wmode+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash" width="'+w+'" height="'+h+'"></embed>');
		document.write('</object>');		
	}
	catch(e){alert(e.description);}
}