function LoadFlashFile(URL,WidthOfFlash,HeightOfFlash){
	
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+ WidthOfFlash + '" height="' + HeightOfFlash + '" id="flashtest">');
document.write('<param name="allowScriptAccess" value="sameDomain">');
document.write('<param name="movie" value="' + URL + '">');
document.write('<param name="quality" value="high">');
document.write('<embed src="' + URL + '" quality="high" '); 
document.write('width="' + WidthOfFlash + '" height="' + HeightOfFlash + '" name="flashtest" '); 
document.write('allowScriptAccess="sameDomain" type="application/x-');
document.write('shockwave-flash"'); document.write('pluginspage="http://www.macromedia.com/go/getflashplayer">');
document.write('</object>');

}