//==============================================================
// Tony Filipe 17/10/02
// This script prints the copyright notice for the current year
//===============================================================

// get current date
var date = new Date();
var yy = date.getYear();

// convert to yyyy format for IE and Netscape
if (navigator.appName == "Microsoft Internet Explorer"){
   var year = (yy < 1000) ? yy + 2000 : yy;}
// Netscape
else{
   var year = ((yy < 1000) && (yy > 100)) ? (yy - 100) + 2000 : yy;}

document.write("&copy " + year);
