function getYear() {
   date = new Date();
   var year = date.getYear()   
   if (year<200)
   		year+=1900;
   return year;
}
