// JavaScript Document
today = new Date();
year = (today.getFullYear) ? today.getFullYear() : today.getYear();
month = today.getMonth();
switch (month) {
			 case 0 : month = "Enero"; break;
			 case 1 : month = "Febrero"; break;
			 case 2 : month = "Marzo"; break;
             case 3 : month = "Abril"; break;
			 case 4 : month = "Mayo"; break;
			 case 5 : month = "Junio"; break;
			 case 6 : month = "Julio"; break;
			 case 7 : month = "Agosto"; break;
			 case 8 : month = "Septiembre"; break;
			 case 9 : month = "Octubre"; break;
			 case 10 : month = "Noviembre"; break;
			 case 11 : month = "Diciembre"; break;
			 }
date = today.getDate();
day = today.getDay();
switch (day) {
			 case 0 : day = ""; break;
			 case 1 : day = ""; break;
			 case 2 : day = ""; break;
			 case 3 : day = ""; break;
			 case 4 : day = ""; break;
			 case 5 : day = ""; break;
			 case 6 : day = ""; break;
			 }
hours = today.getHours();
  if (hours<12)  greeting = '';
	if (hours<18 && hours>11)  greeting = '';
	if (hours<20 && hours>17)  greeting = '';
	if (hours>19)  greeting = '';
hour = (hours>12) ? (hours-12) : hours;
halfDay = (hours>11 && hours<24) ? 'pm' : 'am';
minutes = today.getMinutes();
dayStr =  day+ '' +date+ ' de ' +month+ ', ' +year;
timeStr = (minutes<10) ? hour+ '' +minutes+ '' +halfDay : hour+ '' +minutes+ '' +halfDay;

function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus