
function openRes(t,i){
	var path = "http://www.rivcoparksreservations.org/reservations/";
	
	var theHeight=640;
	var theWidth=760;
	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+"?parkId="+i,"winRes","status=yes,scrollbars=yes,location=no,"+features+",resizable=yes");
	winPop.focus();
}

