//******************************// //****** VALIDAR USUARIO *******// //******************************// function validarUsuario() { var loginUsuario = document.form1.CajaNombre.value.toLowerCase(); var loginClave = document.form1.CajaPassword.value.toLowerCase(); if(loginUsuario == 'autobasas') { if(loginClave == 'keitaro') { location='indexbis.html'; } else { alert("Clave incorrecta. Intentelo de nuevo por favor."); } } else { alert("El usuario no está dado de alta en el sistema."); } } //******************************// //**** FUNCION SCROLL TEXTO ****// //******************************// message = "TALLERES AUTOBASAS, SL^" + "IVECO^" + "ALCAÑIZ - TERUEL^" + "^" scrollSpeed = 70 lineDelay = 1500 txt = "" function scrollText(pos) { if (message.charAt(pos) != '^') { txt = txt + message.charAt(pos) status = txt pauze = scrollSpeed } else { pauze = lineDelay txt = "" if (pos == message.length-1) pos = -1 } pos++ setTimeout("scrollText('"+pos+"')",pauze) } //**********************// //**** FUNCION MENU ****// //**********************// var selectedLayer; var selectedCell; //SHOW MENU function showLayer(id){ document.getElementById(id).style.visibility = "visible"; if (selectedLayer != null){ if (selectedLayer != id){ hideLayer(selectedLayer); } } selectedLayer = id; } //HIDE MENU function hideLayer(id){ if (id != null){ document.getElementById(id).style.visibility = "hidden"; } } //MOUSE OVER function overCell(id){ document.getElementById(id).className = "blue_cell"; if(selectedCell != null){ outCell(selectedCell); } selectedCell = id; } //MOUSE OUT function outCell(id){ document.getElementById(id).className = "white_cell"; } //*****************************************// //***** FUNCION NAVEGAR, CARGAR LINKS *****// //*****************************************// function navigatelink(url){ location= url + ".html"; } //*****************************************// //****** CODIGO PARA ENVIAR EL EMAIL ******// //*****************************************// function sendEmail(receiver,subject,body) { var query = "?subject=" + escape(subject) + "&body=" + escape(body); window.location = "mailto:" + receiver + query; } function sendMyFormDataByEmail() { var form = window.document.forms.form1; var body = "e-mail: " + form.email.value + "\nAsunto: " + form.asunto.value + "\nMensaje: " + form.mensaje.value; sendEmail("rehtse.c@gmail.com", form.asunto.value , body); }