<!--
function MM_checkPlugin(plgIn, theURL, altURL, autoGo) { //v4.0
  var ok=false; document.MM_returnValue = false;
  with (navigator) {
	if (appName.indexOf('Microsoft')==-1 || (plugins && plugins.length)) {
    	ok=(plugins && plugins[plgIn] && Number(plugins[plgIn].description.substring(plgIn.length+1,plgIn.length+2))>=6);
  	}
  	// -------------------------------------------------
  	// 05/21/05: Stu
  	// windows media center pc is currently on version 3.1
  	// therefore, the appVersion property contains 3.1
  	// this defeats the commented "else if" below statement
  	// so don't test for 3.1, we're not concerned with anyone running Windows 3.1 at this point
  	// -------------------------------------------------
  	//else if (appVersion.indexOf('3.1')==-1) { //not Netscape or Win3.1
    else if (plgIn.indexOf("Flash")!=-1 && window.MM_flash!=null) {
		ok=window.MM_flash;
    }
    //}
    else if (plgIn.indexOf("Director")!=-1 && window.MM_dir!=null){
    	 ok=window.MM_dir;
    }
    else {
    	ok=autoGo;
    }
  }
  //following code changed by Stu  
  //if (!ok) theURL=altURL; if (theURL) window.location=theURL;
  if (!ok) theURL=altURL;
  if(theURL){
        /*if(altURL!=theURL){
                //MM_openBrWindow(theURL,null,'fullScreen=yes',0,0,false) ;
		alert("Version after 6");
        }
        else{
		alert("Version before 6");
                //window.location=theURL;
        }*/
	if(altURL==theURL){
		document.location="getFlash.htm";
	}
  }
}

function openBrowserWin(theURL){
	winGame = window.open(theURL,'winGame','directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no');
	winGame.moveTo(0,0);
	winGame.resizeTo(screen.availWidth,screen.availHeight);
	winGame.focus();
}
//-->