function winopen(url, awidth, aheight, showScrollBars) {
	if(showScrollBars == 1){
		scrollBarsStr = "scrollbars=yes";
	} else {
		scrollBarsStr = "scrollbars=no";
	}

	if (url.match("\.jpg") == null) {
		win = window.open(url,"urbanwindow","height=" + aheight + ",width=" + awidth + ",resizeable=no,menubar=no," + scrollBarsStr);
	} else {
		winContent = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"><head><title>HH Realty Group Popup<\/title><\/head><body style=\"margin: 0\">"
		+ "<img border=\"0\" src=\"" + url + "\" height=" + aheight + " width=" + awidth + " \\>"
		+ "<\/body><\/html>";
		win = window.open("","urbanwindow","height="+aheight+",width="+awidth+",resizeable=no,menubar=no," + scrollBarsStr);
		win.document.write(winContent);
		win.document.close();
	}
	win.focus();
}

function checkEmail(emailAddress) {
	if(emailAddress.match(/^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/)) {
		return true;
	} else {
		return false;
	}
}
