function enableFlash(url)
{
	document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write(' WIDTH="500" HEIGHT="200"');
	document.write(' id =');
	document.write(url);
	document.write( ' CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">');
	document.write(' <PARAM NAME="MOVIE" VALUE=');
	document.write(url);
	document.write( ' ><PARAM NAME="PLAY" VALUE="true">');
	document.write(' <PARAM NAME="LOOP" VALUE="false">');
	document.write(	' <PARAM NAME="wmode" VALUE="transparent">');																							
	document.write(' <PARAM NAME="QUALITY" VALUE="high">');																						
	document.write(	' <PARAM NAME="MENU" VALUE="false">');																							
	document.write(	' <EMBED WIDTH="500" HEIGHT="200" SRC=');
	document.write(url);
	document.write(	' LOOP="false" ');
	document.write( ' PLAY="true" ' );
	document.write( ' QUALITY="high" ');
	document.write( ' MENU="false" ');
	document.write(' wmode="transparent" ');
	document.write( ' TYPE="application/x-shockwave-flash" ');
	document.write( ' PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> ');
	document.write( ' <\/EMBED> ');
	document.write( ' <\/OBJECT> ');
	//alert(oeTags);
	//document.write(oeTags);  	
}