function normal_flash_write(srcpath,srcname,obj_id,width,height)
{
	document.write ("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'id='"+
		obj_id +"'width='"+width +"'height='"+height +"'>");
	document.write ("<param name='movie' value='"+srcpath +srcname +"'>");
	document.write ("<param name='loop' value='true'>");
	document.write ("<param name='quality' value='high'>");
	document.write ("<embed name='"+obj_id +"'src='"+srcpath +srcname +
		"'loop='true'quality='high'swLiveConnect='false'width='"+width +
		"'height='"+height +"'type='application/x-shockwave-flash'>");
	document.write ("</embed>");
	document.write ("</object>");
}
