// JavaScript Document
//place external JavaScript
//copyright function will update year Automatically

//copyright

function footer()
{
var copyright=new Date();
var update=copyright.getFullYear();
if(update=="2002"){
document.write("Copyright &copy; 2002 by Macungie Ambulance Corps. All rights reserved.")
}
else{
document.write("Copyright &copy; 2002-"+update +" by Macungie Ambulance Corps. All rights reserved.")
}
}



