/////VALIDACION DOMINIO/////
function ValidacionDominio(f){
  if (f.dominio.value.length<1) {
        alert("Por Favor Introdusca el Nombre de Dominio.");
        f.dominio.focus();
	return(false);
        }
  if (f.dominio.value.length>0) {
        window.open('', 'ventana','height=200,width=400,left=100,top=100,resizable=no,scrollbars=no,toolbar=no,status=no')
	}
}

/////VALIDACION CONTACTO/////
function ValidacionContacto(f){
if (f.nombre.value.length<1) {
        alert("Por favor ingrese NOMBRE.");
        f.nombre.focus();
	return(false);
        }  
if (f.email.value.length<1) {
        alert("Por favor ingrese E-MAIL.");
        f.email.focus();
	return(false);
        }
if (f.tel.value.length<1) {
        alert("Por favor ingrese TELEFONO.");
        f.tel.focus();
	return(false);
        }
if (f.mensaje.value.length<1) {
        alert("Por favor ingrese MENSAJE.");
        f.mensaje.focus();
	return(false);
        }

txt=parent.parent.document.getElementById("answer");
txt.innerHTML=('<iframe name="window" frameborder="0" height="200" hspace="0" id="window" longdesc="0" marginheight="0" marginwidth="0" scrolling="no" vspace="0" width="200"></iframe>');
}

///// OCULATAR FORMULARIO
function re_set(){
//parent.document.contact.reset();
txt=parent.parent.document.getElementById("inquiry");
txt.innerHTML=('');
}

/////VALIDACION ACTUALIZACION/////
function ValidacionActualizacion(f){
if (f.nombre.value.length<1) {
        alert("Por Favor Introdusca su Nombre.");
        f.nombre.focus();
	return(false);
        }  
if (f.telefono.value.length<1) {
        alert("Por Favor Introdusca su Numero de Teléfono.");
        f.telefono.focus();
	return(false);
        } 
if (f.email.value.length<1) {
        alert("Por Favor Introdusca su E-Mail.");
        f.email.focus();
	return(false);
        }
else {  window.open('', 'ventana','height=200,width=400,left=100,top=100,resizable=no,scrollbars=no,toolbar=no,status=no')
}
}
