/*
###################################
printyear by metric152
updated 4.16.01

this script will grab the year and throw it out to a var called printyear. all you have to do 
to print this out in your html page is throw this in your code

<script>document.write(printyear)</script>
###################################
*/
var iyear = new Date();
var year = iyear.getYear();
var printyear='';
var browser = navigator.appName;

if (browser == "Netscape"){//0
	if (year >= 100){//1
		year = year.toString();
		year = year.substring(1,3);
		year ="20" + year;
		}//1
}//0
printyear +="<table border=0 width=300><tr><td align=center>";
printyear +="<font face='Arial, Helvetica, sans-serif' size=1 color=black>&copy;"+year+" Creative iNet. All Rights Reserved.<br>Web site design and hosting by <a href=http://www.creativeinet.com><font color=black face='Arial, Helvetica, sans-serif'>Creative iNet</font></a><i>";
printyear +="</i></font></td></tr></table>";