// ########## FUNCIO OBRE UNA FINESTRA A MIDA

function obrir(nom,amplada,baixada){
pitekandemor="left=40,top=40,screenX=0,screenY=0,status=no,toolbar=no,width="+amplada+",height="+baixada+",directory=no,resize=no,scrollbars=no";
result = window.open(nom,"",pitekandemor);}
	



// ########## FUNCIO AMAGA ELS E-MAILS ANTI SPAM I TAL 

function vinclecorreu(usuari,hostname,hostext,text,estil)
{

	    // Constants per "amagar" les paraules clau

        c1="mai";
        c2="lto";
		if (estil != "")
		{
			estil = "class='"+estil+"'";
		}
        if (text == "")
        {
                text = usuari + "@" + hostname + "." + hostext;
        }

        AnchorHREF = "<A "+estil+" HREF='" + c1 + c2 + ":" + usuari + "@" + hostname + "."  + hostext + "'>" + text + "</A>";

        document.write(AnchorHREF);
}


