// JavaScript Document

var domain = "immanuelofplymouth.org";

function write_Mail(displayText, theAddress, theSubj){
	if (theSubj == undefined)
		theSubj = " ";
	document.write('<a href="mai' + 'lto:' + theAddress + '@' + domain + '?subject=' + theSubj + '">' + displayText + '</a>');
}

function write_Group(displayText, theAddresses, theSubj){
	if (theSubj == undefined)
		theSubj = " ";
	document.write('<a href="mai' + 'lto:' + theAddresses + '?subject=' + theSubj + '">' + displayText + '</a>');
	
}

/*
function writeModified(page){
	alert(page);
	 if (Date.parse(page) != 0) {
		var modiDate = new Date(page);
		var monthName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
		document.write("Last Modified:" + monthName[modiDate.getMonth()] + " " + modiDate.getDate() + ", " + modiDate.getFullYear());
}
*/