/* -- Start of JavaScript function code for "Current Year" -- */
function printYear() 
{     
   var agt=navigator.userAgent.toLowerCase(); 

    today = new Date();
    if (agt.indexOf('msie')!=-1) 
        document.write(today.getYear());
    else
    {
        var yr = parseInt(today.getYear());
        yr = yr + 1900*1;
        document.write(yr);
    }               
}

/* -- End of Current Year code -- */

