
function openflash(width,height,src){ 
	document.writeln("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+width+"' height='"+height+"'>");
	document.writeln("<PARAM NAME='movie' VALUE='"+src+"'>");
	document.writeln("<PARAM NAME='loop' VALUE=false>");
	document.writeln("<PARAM NAME='menu' VALUE=false>");
	document.writeln("<PARAM NAME='quality' VALUE=high>");
	document.writeln("<PARAM NAME='wmode' VALUE='transparent'>"); 
	document.writeln("<PARAM NAME='bgcolor' VALUE=''>");
	document.writeln("<EMBED src='"+src+"' loop=false menu=false quality=high bgcolor='' WIDTH='"+width+"' HEIGHT='"+height+"'' NAME='banner' ALIGN='' type='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'  PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'></EMBED>");
	document.writeln("</object>");

} 
