﻿// JScript File

//PEGA NOME DO USER CONTROL ATUAL
if(document.getElementById("loginUC") != null){
    var objUC = document.getElementById("loginUC").value;
}

function valida_login(){
    var objUC = document.getElementById("loginUC").value;

    if(document.getElementById(objUC + "_txt_cpf").value == ""){
        alert("Preencha o CPF");
        document.getElementById(objUC + "_txt_cpf").focus();
        return false;
    }
    
    if(!validaCPF(objUC + "_txt_cpf", document.getElementById(objUC + "_txt_cpf").value))
        return false;
        
    if(document.getElementById(objUC + "_txt_senha").value == ""){
        alert("Preencha a Senha");
        document.getElementById(objUC + "_txt_senha").focus();
        return false;
    }
    
    return true;
}

function valida_cpf_novoCadastro() {
    var objUC = document.getElementById("loginUC").value;

    if (document.getElementById(objUC + "_txt_novo_cpf").value == "") {
        alert("Preencha o seu CPF");
        document.getElementById(objUC + "_txt_novo_cpf").focus();
        return false;
    }

    if (!validaCPF(objUC + "_txt_novo_cpf", document.getElementById(objUC + "_txt_novo_cpf").value))
        return false;

    return true;
}

function openCurriculo(srcCurriculo,idioma) {
	var w = 785;
	var h = 600;
	var wind = window.open(srcCurriculo,'curriculo', 'width='+w+',height='+h+',scrollbars=yes,resizable=yes,statusbar=yes');

    if (wind == null){
	    if ((idioma == undefined) || (idioma == 0)){
            alert("Desabilite temporariamente o bloqueador de Pop-ups para entrar na janela de cadastro!");
        } else if (idioma == 2) {
            alert("Desabilite temporariamente o bloqueador de Pop-ups para entrar na janela de cadastro!");
        }
	} else {
	    wind.focus();
	}    
}

