<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin - Hi ha que tindre en conter que en els anys bisiestos el Day[x] --> comence per 1 y els altres per 0
var Today=new Date();
var ThisDay=Today.getDay()-1;
var ThisDate=Today.getDate();
var ThisMonth=Today.getMonth()+1;
var ThisYear=Today.getFullYear();  //included if you wish to insert the year
function DayTxt (DayNumber) {
var Day=new Array();
Day[0]="Dilluns";
Day[1]="Dimarts";
Day[2]="Dimecres";
Day[3]="Dijous";
Day[4]="Divendres";
Day[5]="Dissabte";
Day[6]="Diumenge";
return Day[DayNumber];
}
var DayName=DayTxt(ThisDay);
function MonthTxt (MonthNumber) {
var Month=new Array();
Month[1]="Gener";
Month[2]="Febrer";
Month[3]="Març";
Month[4]="Abril";
Month[5]="Maig";
Month[6]="Juny";
Month[7]="Juliol";
Month[8]="Agost";
Month[9]="Setembre";
Month[10]="Octubre";
Month[11]="Novembre";
Month[12]="Desembre";
return Month[MonthNumber];
}
var MonthName=MonthTxt(ThisMonth);
var d = new Date();
var h = d.getHours();
//document.write("<TABLE BORDER=3 BGCOLOR=#336699  WIDTH=45 HEIGHT=55 align=right>"+"<TD>"+"<p align=center>"+"<font color=WHITE size=-2 >"+DayName+"<br>"+"<font color=WHITE size=+3 >"+ThisDate+"</font>"+"<br>"+MonthName+"<br>"+"</b>"+"</font>"+"</p>"+"</TD>"+"</TR>"+"</TABLE>");
document.write("<div id='Layer1' style='position:absolute; left:785px; top:155px; width:93px; height:87px; z-index:1'>"+"<TABLE BORDER=3 BGCOLOR=#336699  WIDTH=45 HEIGHT=55 align=right>"+"<TD>"+"<p align=center>"+"<font color=WHITE size=-2 >"+DayName+"<br>"+"<font color=WHITE size=+3 >"+ThisDate+"</font>"+"<br>"+MonthName+"<br>"+"</b>"+"</font>"+"</p>"+"</TD>"+"</TR>"+"</TABLE>"+"</div>");
/*if (h < 2) document.write("<P ALIGN=center>"+"<b>"+"Good morning! Yes, it's way past midnight."+"</b>"+"</P>");
else if (h < 3) document.write("<P ALIGN=center>"+"<b>"+"Good morning! Up early or working late?"+"</b>"+"</P>");
else if (h < 7) document.write("<P ALIGN=center>"+"<b>"+"Good morning! Up bright and early!"+"</b>"+"</P>");
else if (h < 12) document.write("<P ALIGN=center>"+"<b>"+"Good morning!"+"</b>"+"</P>");
else if (h < 17) document.write("<P ALIGN=center>"+"<b>"+"Good afternoon!"+"</b>"+"</P>");
else if (h < 23) document.write("<P ALIGN=center>"+"<b>"+"Good evening!"+"</b>"+"</P>");
else document.write("<P ALIGN=center>"+"<b>"+"A late good evening! Not much left of it now."+"</b>"+"</P>");*/
//  End -->