// *****
function Wr(str) {
	document.write(str);
}	
// *****
function DoFooter()
{
//alert("DrawFooter");					

Wr("<table cellpadding='0' cellspacing='0' width='100%' style='font-family: Arial;font-size: 10pt;padding-top: 8px;'>");
	Wr("<tr>");
		Wr("<td align='center'>");
			DoFooterLink("http://www.NewIpswichCC.org", "_top", "Home", "|");			
			DoFooterLink("javascript:scroll(0,0)", "_self", "Top", "|");							
			DoFooterLink("../contact.htm", "rbottom", "Contact Us", "|");											
			DoFooterLink("http://www.GoPCC.com/WebAid.htm", "_blank", "+Web Aid+", "|");																						

			Wr("<br>");
			Wr("<span style='font-family: Arial;font-size: 7pt;color: #808080;'>");
				Wr("Page Last Revised: " + document.lastModified);
				Wr("<br>");
				Wr("<a href='http://www.gopcc.com' target='_blank'>");
					Wr("Web Site by PC Consultants");
				Wr("</a>");
			Wr("</span>");											
		Wr("</td>");
	Wr("</tr>");
Wr("</table>"); 
return;
}
// *****
function DoFooterLink(link, target, text, sep)
{
Wr("<a href='" + link + "' target='" + target + "'>" + text + "</a>");
Wr("<span style='font-size: 12pt;color: black;font-weight: normal;'>&nbsp;" + sep +"&nbsp;</span>");
return;
}
// *****
// function ExecLink(link, name)
function ExecLink(link)
{
// alert("ExecLink"+link);
window.open(link, "DESDESDESDESDES", "height=500,top=100,resizable=y");
return;
}
// *****
