// load flash with attached URL string (jsQS)
if ( flashInstalled && flashMajorVersion>=8 )
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + jsWidth + '" height="' + jsHeight + '" id="' + jsFlashFilename + '" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="' + jsFlashPath + '" />');
	document.write('<param name="quality" value="high" />');
// the following line makes it possible to pop up menus on top of flash
	document.writeln('<param name="wmode" value="transparent" />');
	document.write('<param name="bgcolor" value="#' + jsBGcolor + '" />');
// the following line has -- wmode="transparent" -- which is required to pop up menus on top of flash		
	document.write('<embed wmode="transparent" src="' + jsFlashPath  + '" quality="high" bgcolor="#' + jsBGcolor + '" width="' + jsWidth + '" height="' + jsHeight + '" name="' + jsFlashFilename + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
} else {
	document.write('<img src="/images/noFlash.jpg" width="758" height="231" />');
}