function flashObject(sPath,lWidth,lHeight,sVars){
document.write('<OBJECT style="z-index:-1;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://macromedia.com/cabs/swflash.cab#version=6,0,0,0" WIDTH=' + lWidth + ' HEIGHT=' + lHeight + '>')
document.write('<PARAM NAME=movie VALUE="' + sPath + '">')
document.write('<PARAM NAME=wmode VALUE=transparent>')
document.write('<PARAM NAME=FlashVars VALUE="' + sVars + '">')
document.write('<PARAM NAME=quality VALUE=best>')
document.write('<EMBED src="' + sPath + '" FlashVars="' + sVars + '" WIDTH=' + lWidth + ' HEIGHT=' + lHeight + ' wmode="transparent" TYPE="application/x-shockwave-flash"></EMBED>')
document.write('</OBJECT>')
}