/*****************************************
   ETSIT GESTION - FUNCIONES GENERALES JS
 *****************************************/

function mostrar(id, visibility)
{
    obj = document.getElementById(id);
    obj.style.display = visibility;
}

function enviamail(login, dominio)
{
	var res = "";
	for (var n = 0; n < login.length; n++)
		res += String.fromCharCode(login.charCodeAt(n));
	if (res.indexOf('@') < 0)
		res = res + '@' + dominio + 'tel.uva.es';
	location = "mail" + "to:" + res;
}

