
function printFlash(path, cWidth, cHeight, id, wmode, objectParameters){
	document.write("<OBJECT " + objectParameters + " classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" ")
	document.write(" WIDTH=" + cWidth + " HEIGHT=" + cHeight + " id=" + id + ">")
	document.write("<PARAM NAME=movie VALUE=\"" + path + "\">")
	document.write("<PARAM NAME=wmode VALUE=" + wmode + "><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF>")
	document.write("<EMBED src=\"" + path + "\" quality=high bgcolor=#FFFFFF ")
	document.write(" WIDTH=" + cWidth + " HEIGHT=" + cHeight + " NAME=" + id + " swLiveConnect=true></EMBED>")
	document.write("</OBJECT>")
}

