function write_flash(mv) {
	document.write("<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='392' height='103'>");
	document.write("<param name='movie' value='"+mv+"'>");
	document.write("<param name='quality' value='high'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<embed src='"+mv+"' wmode='transparent' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='392' height='103'></embed>");
	document.write("</object>");
}

function flex_write_flash(mv,w,h,fprm) {
	document.write("<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='"+w+"' height='"+h+"'>");
	document.write("<param name='movie' value='"+mv+"'>");
	document.write("<param name='quality' value='high'>");
	document.write("<param name='wmode' value='transparent'>");
	if(fprm) document.write("<param name='FlashVars' value='"+fprm+"'>");
	document.write("<embed src='"+mv+"' wmode='transparent' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+w+"' height='"+h+"'");
	if(fprm) document.write(" FlashVars='"+fprm+"' ");
	document.write("></embed>");
	document.write("</object>");
}