// Copyright statement displays at the bottom of every page
function copydate()
 {
    today=new Date();
    yearonly=today.getFullYear();
	firstyear = '&copy;&nbsp;Copyright <a href="http://www.netability.com">NETability, Inc.</a> 1998 - ';
    document.write(firstyear + yearonly + '. &nbsp; All rights reserved.');
 }
