function getFecha()
 {
	  var this_month = new Array(12);
		  this_month[0]  = "Ene";
	      this_month[1]  = "Feb";
		  this_month[2]  = "Mar";
		  this_month[3]  = "Abr";
		  this_month[4]  = "May";
		  this_month[5]  = "Jun";
		  this_month[6]  = "Jul";
		  this_month[7]  = "Ago";
		  this_month[8]  = "Sep";
		  this_month[9]  = "Oct";
		  this_month[10] = "Nov";
		  this_month[11] = "Dic";
	 var today = new Date();
	 var day   = today.getDate();
	 var month = today.getMonth();
	 var year  = today.getYear();
		  if (year < 1900){
				 year += 1900;
		  }
	 var hour  = today.getHours();
	 var minut = today.getMinutes();
	 var secon = today.getSeconds();
	 if (minut < 10) minut = "0"+minut;
	  document.write(day+"/"+this_month[month]+"/" +year+":"+hour+":"+minut);
}