
function openRes(t,i){
	var path = "/reservations/";
	
	var theHeight=620;
	var theWidth=717;
	var theTop=(screen.height/2)-(theHeight/2)
	var theLeft=(screen.width/2)-(theWidth/2)
	var	features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft;
	
	if(t=="flash"){
		path += "flash/flashreservations.asp";
	}else{
		path += "text/textreservations.asp";
	}
	var winPop = window.open(path+"?park_id="+i,"winRes","status=yes,scrollbars=yes,location=no,"+features+",resizable=yes");
	winPop.focus();
}


function openResCounty(){
	var path = "/reservations/";
	
	var theHeight=620;
	var theWidth=717;
	var theTop=(screen.height/2)-(theHeight/2)
	var theLeft=(screen.width/2)-(theWidth/2)
	var	features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft;
	
		path += "flash/flashReservations_countywide.asp";

	var winPop = window.open(path+"?parkId=0","winRes","status=yes,scrollbars=yes,location=no,"+features+",resizable=yes");
	winPop.focus();
}

