// OCULTAR CORREU
usuario="info"
dominio="penaranda.es"
conector="@"

function dame_correo(){
   return usuario + conector + dominio;
}

// aquesta printa la imatge amb el sobre i el text
function escribe_enlace_correo(){
	document.write("<a href='mailto:" + dame_correo() + "' title='" + dame_correo() + "'><img src='/logos/ico_email.gif' width='17' height='9' border='0' align='absmiddle'>" + "e-mail" + "</a>");
}

// aquesta només printa el text
function escribe_enlace_correo2() {
	document.write("<a href='mailto:" + dame_correo() + "' title='" + dame_correo() + "'>" + dame_correo() + "</a>");
}

