﻿// JScript File

//--------------- FECHA ---------------
        var d=new Date();
        var monthname=new Array("gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre");
        //Ensure correct for language. English is "January 1, 2004"
        var TODAY = d.getDate() + " de " + monthname[d.getMonth()] + " de " + d.getFullYear();
        
        function CambiaFondo(celda)
        {
            document.getElementById(celda).bgColor="#EFF9CB";             
            document.getElementById(celda).style.cursor = "hand";
            document.getElementById(celda).style.fontWeight= "bold"; 
      
        }
        function RestauraFondo(celda)
        {
            document.getElementById(celda).bgColor="#F7F7F7";  
            document.getElementById(celda).style.fontWeight= "normal";
        }
        
        function Enlaza(link)
        {
            location.href = link;
               
        }

