
function Semaine()
{
           this[0] = "domingo";
           this[1] = "lunes";
           this[2] = "martes";
           this[3] = "miércoles";
           this[4] = "jueves"; 
           this[5] = "viernes";
           this[6] = "sábado";
}

function Mois(){
           this[0] = "enero";
           this[1] = "febrero";
           this[2] = "marzo";
           this[3] = "abril";
           this[4] = "mayo";
           this[5] = "junio";
           this[6] = "julio";
           this[7] = "agosto";
           this[8] = "septiembre";
           this[9] = "octubre";
           this[10] = "noviembre";
           this[11] = "diciembre";
           }

function date(){
           var semaine=new Semaine();
           var mois=new Mois();
           var myDate=new Date();
           var result=semaine[myDate.getDay()]+" "+myDate.getDate()+" "+mois[myDate.getMonth()]+" 2007";
	   document.writeln(''+result+'');
	   }
