	  var newWindow
	  function openWin(pageName){
		newWindow = window.open(pageName,"","width=440,height=420,scrollbars=yes,resizable=yes");
		return false	
	  }



function openRaceDetails(cbo,nextRace,crewID,pos,crewName){
	currentRace = cbo;
	//if (cbo.checked==true){
		//openWin('race_detail.asp?referrer=<%=pageName%>&amp;currentRace='+currentRace+'&amp;nextRace='+nextRace+'&amp;crewID='+crewID+'&amp;pos='+pos+'&amp;crewName='+crewName+'')
	//}
}

function undo(raceValue,incorrectIDVal){
	var incorrectID = document.getElementById('incorrectID');
	var raceNumber = document.getElementById('raceNumber');
	var mode = document.getElementById('mode');
	
	incorrectID.value = incorrectIDVal
	raceNumber.value = raceValue
	mode.value = "undo";
	
	document.fmRaceOrder.submit();
	
}


function openDialog(page,dWidth,dHeight,refer){

	if (dHeight==""){
		dHeight = "550"
	}
	if (dWidth==""){
		dWidth = "766"
	}
	
   var sFeatures="dialogHeight: "+dHeight+"px;dialogWidth: "+dWidth+"px;";

	window.showModalDialog("iFrame.asp?pageName="+page+"", window, sFeatures);
	window.location.href=refer;
}

