function fCurrentDate(){
   var hoy = new Date();
   var stranno = new String();
   var vday = new String(hoy.getDate());;
   var vmonth = new String(hoy.getMonth()+1);
   var vyear = new String(hoy.getYear());
   var vectormeses = new Array('Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre');

   if ( vday.length == 1 )
        vday = "0" + vday;

   if ( vmonth.length == 1 )
    vmonth = "0" + vmonth;

   if (vyear.length < 4)
        vyear = 1900 + parseInt(vyear,10);

   var strDate= "Lima, " + vday + " de " + vectormeses[vmonth-1] + " del " + vyear;

   return strDate;
}

