// ***** STATUSBAR
var boodschap = 'Carles Benavent'; 
function dgstatus()
{
      window.status = boodschap;
	timerID= setTimeout("dgstatus()", 25);
}
<!--
dgstatus();
//-->

// ***** DATA EN CATALÀ
function datacatala(x)
{
  d = new Date(x)
  ds = d.getDay()
  if (ds==0) {ds="Diumenge, "}
  if (ds==1) {ds="Dilluns, "}
  if (ds==2) {ds="Dimarts, "}
  if (ds==3) {ds="Dimecres, "}
  if (ds==4) {ds="Dijous, "}
  if (ds==5) {ds="Divendres, "}
  if (ds==6) {ds="Dissabte, "}
  dd   = d.getDate()
  if (dd < 10) {dd = "0" + dd}
  mm   = d.getMonth()+1
  if (mm < 10) {mm = "0" + mm}
  yy   = d.getYear()
  if (yy < 2000) {yy = 1900 + yy}
  hh  = d.getHours()
  if (hh < 10) {hh = "0" + hh}
  mi = d.getMinutes()
  if (mi < 10) {mi = "0" + mi}
  ss = d.getSeconds()
  if (ss < 10) {ss = "0" + ss}
  return ds+dd+"/"+mm+"/"+yy+" "+hh+":"+mi+":"+ss;
}