function showFlash(sFlashFileName, iWidth, iHeight, sBackColor, iTransparent ) {
		document.write ("<OBJECT classid= 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' ")
		document.write ("WIDTH=" + iWidth + " HEIGHT=" + iHeight + " id=ShockwaveFlash1>")
		document.write ("<PARAM NAME=movie VALUE='/multimedia/flash/" + sFlashFileName + ".swf'> ")
		document.write ("<PARAM NAME=quality VALUE=high> ")
		document.write ("<PARAM NAME=scale VALUE=noborder> ")
		document.write ("<PARAM NAME=bgcolor VALUE=" + sBackColor + "> ")
		if (iTransparent) {	document.write ("<PARAM NAME='wmode' value='transparent'>") }			
		document.write (" <EMBED src='/multimedia/flash/" + sFlashFileName + ".swf' quality=high scale=exactfit ")
		document.write (" bgcolor=" + sBackColor + "  WIDTH=" + iWidth + " HEIGHT=" + iHeight + " TYPE='application/x-shockwave-flash'") 
		document.write("PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'> ")
		document.write ("</EMBED></OBJECT>")
}