<!-- hide from old browsers
  function GetMonth(intMonth){
    var MonthArray = new Array("Enero", "Febrero", "Marzo",
                               "Abril", "Mayo", "Junio",
                               "Julio", "Agosto", "Septiembre",
                               "Octubre", "Noviembre", "Diciembre") 
    return MonthArray[intMonth] 	  	 
    }
  function getDateStr(){
    var today = new Date()
    var year = today.getYear()
    if(year<1000) year+=1900
    var todayStr = GetMonth(today.getMonth()) + " " + today.getDate()
    todayStr += ", " + year
    return todayStr
    }
//-->
