//--------------------------------------------------------------------------------------------------------------------
function EnviaOferta(){
if(document.formu_oferta.nombres.value==""){ 
alert("INGRESE EL NOMBRE");
document.formu_oferta.nombres.focus();
return;
} 
if(document.formu_oferta.email.value==""){ 
alert("INGRESE EL EMAIL");
document.formu_oferta.email.focus();
return;
} 
if ((document.formu_oferta.email.value.indexOf ('@', 0) ==-1)||(document.formu_oferta.email.value.length < 5)){ 
alert('EMAIL INVALIDO'); 
document.formu_oferta.email.focus();
return ; 
}
if(document.formu_oferta.oferta.value==""){ 
alert("INGRESE LA OFERTA");
document.formu_oferta.oferta.focus();
return;
} 
document.formu_oferta.submit();
}
//--------------------------------------------------------------------------------------------------------------------
function GrabarUser(){
if(document.formu_user.empresa.value==""){ 
alert("INGRESE LA EMPRESA");
document.formu_user.empresa.focus();
return;
} 
if(document.formu_user.nombres.value==""){ 
alert("INGRESE EL NOMBRE");
document.formu_user.nombres.focus();
return;
} 
if(document.formu_user.apellidos.value==""){ 
alert("INGRESE EL APELLIDO");
document.formu_user.apellidos.focus();
return;
} 
if(document.formu_user.email.value==""){ 
alert("INGRESE EL EMAIL");
document.formu_user.email.focus();
return;
} 
if ((document.formu_user.email.value.indexOf ('@', 0) ==-1)||(document.formu_user.email.value.length < 5)){ 
alert('EMAIL INVALIDO'); 
document.formu_user.email.focus();
return ; 
}
if(document.formu_user.telefonos.value==""){ 
alert("INGRESE EL TELEFONO");
document.formu_user.telefonos.focus();
return;
} 
if(document.formu_user.direccion.value==""){ 
alert("INGRESE LA DIRECCION");
document.formu_user.direccion.focus();
return;
} 
if(document.formu_user.puerto_descarga.value==""){ 
alert("INGRESE EL PUERTO DE DESCARGA");
document.formu_user.puerto_descarga.focus();
return;
} 
if(document.formu_user.pais.value==""){ 
alert("INGRESE EL PAIS");
document.formu_user.pais.focus();
return;
} 
if(document.formu_user.usuario.value==""){ 
alert("INGRESE EL USUARIO");
document.formu_user.usuario.focus();
return;
} 
if(document.formu_user.contrasena1.value==""){ 
alert("INGRESE LA CONTRASEŅA");
document.formu_user.contrasena1.focus();
return;
} 
if(document.formu_user.contrasena2.value==""){ 
alert("REPITA LA CONTRASEŅA");
document.formu_user.contrasena2.focus();
return;
} 
if(document.formu_user.contrasena1.value!=document.formu_user.contrasena2.value){ 
alert("LAS CONTRASEŅAS DEBEN SER IGUALES");
document.formu_user.contrasena1.focus();
return;
} 
document.formu_user.submit();
}
//-----------------------------------------------------------------------------------------------------------
function ValidarLisCategorias(){
if(document.formu.id_ano1.value=="" && document.formu.id_ano2.value!=""){ 
alert("DEBE SELECCIONAR EL AŅO DE INICIO");
document.formu.id_ano1.focus();
return;
}
if(document.formu.id_ano1.value!="" && document.formu.id_ano2.value==""){ 
alert("DEBE SELECCIONAR EL AŅO FINAL");
document.formu.id_ano2.focus();
return;
}
if(document.formu.id_ano1.value > document.formu.id_ano2.value){ 
alert("EL AŅO INICIAL DEBE SER MENOR AL FINAL");
document.formu.id_ano1.focus();
return;
}
document.formu.submit();
}
//-----------------------------------------------------------------------------------------------------------
