var time = new Date();
ordval= (time.getTime());
var hoy = new Date();
function dia (hoy){
var hoy_dia = hoy.getDay();
switch(hoy_dia){
case 0: return "Sunday";
case 1: return "Monday";
case 2: return "Tuesday";
case 3: return "Wednesday";
case 4: return "Thursday";
case 5: return "Friday";
case 6: return "Saturday";
return "";}
}
function mes(hoy){
var hoy_mes = hoy.getMonth();
switch(hoy_mes){
case 0: return "January";
case 1: return "February";
case 2: return "March";
case 3: return "April";
case 4: return "May";
case 5: return "June";
case 6: return "July";
case 7: return "August";
case 8: return "September";
case 9: return "October";
case 10: return "November";
case 11: return "December";
return "";}
}	  
var yearNr=hoy.getYear();
if(yearNr < 2000) Year = 1900 + yearNr;
else Year = yearNr;