
function WriteFlash(id, path, file, width, height, wmode, bgcolor, align){
	var EmbedFlash = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\""+width+"\" height=\""+height+"\" id=\""+id+"\" align=\""+align+"\">";
	EmbedFlash += "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
	EmbedFlash += "<param name=\"movie\" value=\""+path+file+"\" />";
	EmbedFlash += "<param name=\"quality\" value=\"high\" />";
	EmbedFlash += "<param name=\"wmode\" value=\""+wmode+"\" />";
	EmbedFlash += "<param name=\"bgcolor\" value=\""+bgcolor+"\" />";
	EmbedFlash += "<param name=\"menu\" value=\"false\" />";
	EmbedFlash += "<embed src=\""+path+file+"\" wmode=\""+wmode+"\" quality=\"high\" menu=\"false\" bgcolor=\""+bgcolor+"\" width=\""+width+"\" height=\""+height+"\" name=\""+id+"\" align=\""+align+"\" allowscriptaccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" /></embed></object>";
	document.write(EmbedFlash);
}