function enviarContacto(){
    bool = false; 
    if(document.getElementById('nombre').value == '' || document.getElementById('nombre').value == 'Escriba su nombre') {
        bool = false;
        alert("El nombre es obligatorio");
        document.getElementById('politica').checked=0;
        document.getElementById('nombre').focus();
    }
    else{
        bool = true;
    }
    if(bool){
        if ((/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.getElementById('email').value))!=true){
            bool = false;
            alert("El email es obligatorio");
            document.getElementById('politica').checked=0;
            document.getElementById('email').focus();
        }
        else{
            bool = true;
        }
    }
    if(bool){
        if(document.getElementById('asunto').value == '' || document.getElementById('asunto').value == 'Escriba el asunto') {
            bool = false;
            alert("El asunto es obligatorio");
            document.getElementById('politica').checked=0;
            document.getElementById('asunto').focus();
        }
        else{
            bool = true;
        }
    }
    if(bool){
        if(document.getElementById('consulta').value == '' || document.getElementById('consulta').value == 'Escriba su consulta, comentarios, etc') {
            bool = false;
            alert("La consulta es obligatoria");
            document.getElementById('politica').checked=0;
            document.getElementById('consulta').focus();
        }
        else{
            bool = true;
        }
    }
    if(bool){
        if(document.getElementById('seguridad').value == '' || document.getElementById('seguridad').value == 'Escriba lo que ve en la imagen') {
            bool = false;
            alert("El código de seguridad es obligatorio");
            document.getElementById('politica').checked=0;
            document.getElementById('seguridad').focus();
        }
        else{
            bool = true;
        }
    }
    if(bool){
        if(!document.getElementById('politica').checked) {
            bool = false;
            alert("Debes aceptar la política de privacidad");
        }
        else{
            bool = true;
        }
    }
    if(bool){
        document.getElementById('frmdatos').submit();
    }
}
