// JavaScript Documentfunction printContactFoot(){	var cwemnm="contact";	var cwemsrv="cutwatersw";	var cwemtld="com";		var fnm = "Alan M. ";	var lnm = "Stewart";		var pharea = "603";	var phloc="357";	var pn="2628";		var fml = cwemnm;	cwemnm = '<a href="ma';	document.write(fnm+lnm);	fml += "@";	cwemnm += 'ilto:';	document.write("&nbsp;&nbsp;|&nbsp;&nbsp;");	fml += cwemsrv;	document.write(pharea + "." + phloc +"." + pn);	fml += "." + cwemtld;	document.write("&nbsp;&nbsp;|&nbsp;&nbsp;");	document.write(cwemnm);	document.write(fml);	document.write('">' + fml +"</a>");}function printCR(){	var outs = "Copyright &copy;2005-";	outs += new Date().getFullYear() + " Cutwater";	document.write(outs);}
