//Site-wide functions from main.js that apply to the home page
//Rev. 8/4/08


//create automatically updated copyright text
   COPYRIGHT = "&copy; ECi Software Solutions, 1999&ndash;";

   function writeCopyright()
   {
      document.write(COPYRIGHT, new Date().getFullYear(), ". All rights reserved.");
   }

//Cloak email addresses to hide them from spam bots
	function cloaker(mailname,mailserver) {
		document.write("<a href='mailto:" + mailname + "@" + mailserver + "'>");
		document.write(mailname + "@" + mailserver);
		document.write("</a>");
	}

