function FlashJS(filename,WidthNum,HeightNum){
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+WidthNum+"' height='"+HeightNum+"'");
	document.write("id='"+filename+"'");
	document.write(">");
	document.write("  <param name='src' value='"+filename+"'>");
	document.write("  <embed pluginspage='http://www.macromedia.com/go/getflashplayer' width='"+WidthNum+"' height='"+HeightNum+"'");
	document.write("    src='"+filename+"'");
	document.write("    name='"+filename+"'");
	document.write("  />");
	document.write("</object>");
}
