	function flashWrite(file,w,h){
		html = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"";
		html +="codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"";
		html +="width='"+w+"'";
		html +="height='"+h+"'";
		html +="id='"+file+"' align='middle'>";
		html +="<param name='allowScriptAccess' value='sameDomain'>";
		html +="<param name='movie' value='"+file+"'>";
		html +="<param name='quality' value='high'>";
		html +="<param name='flashvars' value='test_num=4'>";
		html +="<param name='bgcolor' value='#ffffff'>";
		html +="<param name='scale' value='noborder'>";
		html +="<param name='menu' value='false'>";
		html +="<embed src='"+file+"' quality='high' bgcolor='#ffffff'";
		html +="width='"+w+"' height='"+h+"' name='"+file+"'"
		html +="align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'>";
		html +="</object>";
		document.write(html);

	}