function printCopyRight()
	{
		var today = new Date();
		var myYr = today.getYear();
		myYr += 1900;
		document.write("<p><small>Copyright 2000 - ", myYr.toLocaleString()," - Sunburst Sensors, LLC</small></p>");
	}

