function Create_Flash(v_id, v_style, v_file)
{
	document.write("<OBJECT ID='" + v_id + "' style='" + v_style + "' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' ");
	document.write("CODEBASE='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' >");
	document.write("<PARAM NAME='movie' VALUE='" + v_file + "'>");
	document.write("<PARAM NAME='quality' VALUE='high'>");
	document.write("<EMBED SRC='" + v_file + "' QUALITY='high' pluginspage='http://www.macromedia.com/go/getflashplayer' ");
   	document.write("TYPE='application/x-shockwave-flash' style='" + v_style + "' </EMBED></OBJECT>");
}

