    days = new Array(7)
    days[1] = "Diumenge";
    days[2] = "Dilluns";
    days[3] = "Dimarts"; 
    days[4] = "Dimecres";
    days[5] = "Dijous";
    days[6] = "Divendres";
    days[7] = "Dissabte";
    months = new Array(12)
    months[1] = " de Gener ";
    months[2] = " de Febrer ";
    months[3] = " de Mar&ccedil; ";
    months[4] = " d'Abril ";
    months[5] = " de Maig ";
    months[6] = " de Juny ";
    months[7] = " de Juliol ";
    months[8] = " d'Agost ";
    months[9] = " de Setembre ";
    months[10] = " d'Octubre "; 
    months[11] = " de Novembre ";
    months[12] = " de Dicembre ";
    today = new Date(); day = days[today.getDay() + 1]
    month = months[today.getMonth() + 1]
    date = today.getDate()
    year=today.getYear(); 
if (year < 2000)
year = year + 1900;
    document.write ("<table border=0 cellpadding=0 cellspacing=0 width=100%><tr><td width=185 align=center><b><font face='Verdana' size=1 color=black><a href='#' class='escoltar'><img src=audio.gif border=0 valign=top>&nbsp;&nbsp;ESCOLTAR &Agrave;UDIO</a></font></b></td><td align=right><b><font face='Verdana' size=1 color=white>"+ day +
    ", " + date + month + "de " + year + "&nbsp;&nbsp;</font></b></td></tr></table>")
