/*
************************************************************************
This script Copyright 2007 Timothy Adrigan Andres
All Rights Reserved
************************************************************************
*/

email = new Object();

email.local = function(name) {
	window.location.href = "mailto:" + name + "@livinghopetrenton.com";
}
email.external = function(site, end, name){
	window.location.href = "mailto:" + name + "@" + site + "." + end;
}