<!-- Funciones javascript -->function asignafoto(id, ruta) {	self.document.getElementById(id).src=ruta;}function validaFormulario(Form,mensaje){  if(Form.nombre.value=="" || (Form.telefono.value=="" && Form.correo.value=="")){    alert(mensaje);    return false;  }  return true;}