<!--
var now = new Date();
var yrIE = now.getYear();
var yrNS = now.getYear() + 1900;

// String to display current date of IE.
var todaysDateIE =(""
+ yrIE
+ "");

// String to display current date of NS.
var todaysDateNS =(""
+ yrNS
+ "");

if(navigator.appName == "Netscape"){
   document.open();
   document.write(""+todaysDateNS+"");
}

else {
   document.open();
   document.write(""+todaysDateIE+"");
}

// -->


