_cfscriptLocation = "/ajax/functions/functions.cfm";

function isEmail(s) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(s)){ return true; }
	return false;
}

function printerfriendly(pageurl) {
	window.open(pageurl+'&print=1','print','resizable=yes,scrollbars=yes,width=820,height=700');
}

function printerfriendlylistitem(listId,itemId) {
	window.open('/includes/printlistitem.cfm?listid='+listId+'&itemid='+itemId,'print','resizable=yes,scrollbars=yes,width=820,height=700');
}

function emailfriend(pageurl,pagetarget) {	
	window.open('/email/emailfriend.cfm?pageurl='+pageurl+'&target='+pagetarget+'&pagetitle='+document.title,'email','resizable=yes,scrollbars=yes,width=700,height=700');
}

function whatismycommunity() {
	window.open('/maps/whatismycommunity.cfm','community','resizable=yes,scrollbars=yes,width=500,height=270');
}