
function openRes(a,i){
	var path = "http://reservations.sdparks.org/";
	
	var theHeight=520;
	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(a=="account")
		path += "account/";
	else
		path += "reservations/";
	
	var winPop = window.open(path+"index.asp?park_idno="+i,"winRes","status=yes,scrollbars=yes,location=yes,"+features+",resizable=yes");
	winPop.focus();
}

function openDayUse(i){
 var theHeight=520;
 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;
 var winPop = window.open("http://reservations.sdparks.org/SDCountyDayUse/day_use.asp?parkid="+i,"winRes","status=yes,scrollbars=yes,"+features+",resizable=yes");
 winPop.focus();
}

