// JavaScript Document


// FLASH FIXES FOR EXPLORER ////////////////////////////////////////////////////////////////////////


function embedFlashFile(flashFile, width, height, flashVariable) {
	var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
		+ 'width="' + width + '" height="' + height + '"'
		+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
		+ '<param name="FlashVars" value="videoToPlay=' + flashVariable + '"/>'
		+ '<param name="movie" value="' + flashFile + '"/>'
		+ '<param name="quality" value="high"/>'
		+ '<param name="bgcolor" value="#000000"/>'
		+ '<param name="wmode" value="transparent">'
		+ '<embed src="' + flashFile + '" FlashVars="videoToPlay=' + flashVariable + '" quality="high" bgcolor="#000000" '
		+ 'width="' + width + '" height="' + height + '" name="flashfile" align="middle"'
		+ 'play="true"'
		+ 'loop="false"'
		+ 'quality="high"'
		+ 'wmode="transparent"'
		+ 'allowScriptAccess="sameDomain"'
		+ 'type="application/x-shockwave-flash"'
		+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
		+ '<\/embed>'
		+ '<\/object>';
		document.write(oeTags);   // embed the flash movie
}



// POP-UPS AND PLAYER WINDOWS ////////////////////////////////////////////////////////////////////////


function openPlayerWindow(theURL) {
	 window.open(theURL,'Mercs2Player','width=350,height=300,scrollbars=no');
}
