
function externalLinks() 
{
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) 
 {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

/*************************************************************************************/

function correo(usuario, dominio) 
{ 
	document.write('<a href="mailto:' + usuario + '@' + dominio + '?subject=Contacto%20página%20web" rel="external">' + usuario + '@' + dominio + '</a>'); 
} 

/*************************************************************************************/

function borrarTexto(identificador)
{
	switch (identificador)
	{
		case "comentario": if (document.getElementById(identificador).value=="Escribe aquí tu comentario o sugerencia" || document.getElementById(identificador).value=="Escribe aquí tu comentario") document.getElementById(identificador).value = ""; break;
	}
}

/*************************************************************************************/

function verComentarios() 
{ 
	document.getElementById('verformulario').style.display = 'block';
	document.getElementById('vercomentario').style.display = 'block';
	document.getElementById('formcomentario').style.display = 'block';
} 
function verRedesSociales() 
{ 
	document.getElementById('verredessociales').style.display = 'block';
} 

/*************************************************************************************/



