function clean (text) {if (text.value=='Tu nombre' || text.value=='Tu email' || text.value=='Escribe aqu\xed tu comentario' || text.value=='Introduce tu email..' || text.value=='Asunto' || text.value=='Tu mensaje' || text.value=='Tu correo') text.value = '';} function desplegar (id) {var elemento = document.getElementsByName (id) [0]; if (elemento.style.display == "block") elemento.style.display = "none";else elemento.style.display = "block"; var elemento = document.getElementsById (id); if (elemento.visibility == "hidden") elemento.visibility = "visible"; else elemento.visibility = "hidden"; return false;} function protectMail (usuario, dominio) {document.write('<a href=\"mailto:' + usuario + '@' + dominio + '\">' + usuario + '@' + dominio + '</a>');}