// Global JavaScript Document
function writeCopyright(){
	// get the current year and write it
	var theDate = new Date();
	//document.write();
	document.write("&copy;" + theDate.getFullYear() + " Nancy Nell & Associates. All Rights Reserved.");
}

function writeEmail(thename,addr,theformat){
		var aa, bb, cc, dd, ee, ff
		aa=addr;
		bb="@";
		cc="nancynell.";
		dd="com";
		ee=(aa + bb + cc + dd);
		ff=thename;
		if(theformat=="thename"){
			document.write("<a href=\"mailto:" + ee + "\">" + thename + "</a>");
		}else{
			document.write("<a href=\"mailto:" + ee + "\">" + ee + "</a>");
		}
}