
$(document).ready(function(){

	var popupEvent = function(event) {
		var option = 'width=680,height='+screen.availHeight+',left=0,top=0,scrollbars=yes,resizable=yes,toolbar=no,menubar=no,status=no,location=no,directories=no,addressbar=no';
		window.open(this.href, this.rel, option).focus();
		event.preventDefault();
		event.stopPropagation();
	}
	$("a.popup").each(function(i) {
		$(this).click(popupEvent);
		$(this).keypress(popupEvent);
	});

});

function openMapWindow(url){
	avWidth = screen.availWidth;
	avHeight = screen.availHeight;
	winWidth = 640;
	//winHeight = 600;
	winHeight = avHeight;
			newWindow =window.open(url,"Map_Window","left=0,top=0,width=" + winWidth + ",height=" + winHeight + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
			newWindow.focus();
}