function openMap()
{
	var path = "http://reservations.santeelakes.com/FlashReservations.aspx";
	var theHeight=550;
	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(path,"winRes","status=yes,scrollbars=yes,location=no,"+features+",resizable=yes");
	winPop.focus();
}

function openSearch()
{
	var path = "http://reservations.santeelakes.com/NonFlashReservations.aspx";
	var theHeight=550;
	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(path,"winRes","status=yes,scrollbars=yes,location=no,"+features+",resizable=yes");
	winPop.focus();
}
