function LoadFlash(width, height, path)
{
	document.write("<object type=\"application/x-shockwave-flash\" ");
	document.write("data=\""+path+"\" ");
	document.write("width=\""+width+"\" height=\""+height+"\"> ");
	document.write("<param name=\"movie\" ");
	
	document.write("value=\""+path+"\" /> ");
	document.write("<param name=\"quality\" ");
	document.write("value=\"high\" /> ");
	document.write("<param name=\"bgcolor\" ");
	document.write("value=\"#ffffff\" /> ");
	document.write("<param name=\"wmode\" value=\"opaque\">");
	document.write("</object>");
}

