function ensenya_thedate()
{
var datenow = new Date();
var days = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
var months = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
document.writeln(days[datenow.getDay()]);
document.writeln(",&nbsp; " + (datenow.getDate() < 10 ? "0" : "") + datenow.getDate() + "");	
document.writeln(months[datenow.getMonth()]);
if(parseInt(navigator.appVersion)>=4) { document.writeln(",&nbsp; " + datenow.getFullYear()); } else { document.writeln(datenow.getYear()); }
document.write(" &nbsp;&nbsp;&nbsp;( " + (datenow.getHours() < 10 ? "0" : "") + datenow.getHours() + ":");
document.write((datenow.getMinutes() < 10 ? "0" : "") + datenow.getMinutes() + ":");
document.writeln((datenow.getSeconds() < 10 ? "0" : "") + datenow.getSeconds()+ " )");
} 

function load(polse)
{ var index=polse.guera.selectedIndex
 if (polse.guera.options[index].value != "0")
{ location=polse.guera.options[index].value;
}
}
