// JavaScript Document
// YorkRegion.com
// created by Mike Paolucci
//
function openMap(url) {
var theWindow = "googlemap";
var sWidth = screen.width;
var sHeight = screen.height;
var w = sWidth / 2 - 275;
var h = sHeight / 2 - 275;
var theSettings = "width=550,height=550,resizable=no,scrollbar=no,toolbar=no,directories=no,screenX=" + w + ",screenY=" + h + ",left=" + w + ",top=" + h;
	window.open(url,theWindow,theSettings);
}

function doEmailLink(strUser, strDomain) {
	var theEmailLink = "mailto:" + strUser + "@" + strDomain + "?subject=Inquiry via YorkRegion.com";
	document.location.href=theEmailLink;
}
