$(document).ready(function(){
	$("#mapContainer a").add("#restarea-list a").click(function(event){
		event.preventDefault();
		popRestArea($(this).attr("href"));
	})
});

function popRestArea(strURL)
	{
	thisPopRestArea = window.open(strURL,"RestArea","height=380,width=675,scrollbars=1");
	thisPopRestArea.focus();
	}

