// JavaScript Document

function Formatar_Telefone(objeto,tammax,teclapres){

        var tecla = teclapres.keyCode;
        vr = objeto.value;
        vr = vr.replace( "(", "" );
        vr = vr.replace( ")", "" );
        vr = vr.replace( " ", "" );
        vr = vr.replace( "-", "" );
        tam = vr.length;

        if (tam < tammax && tecla != 8) {
                tam = vr.length + 1 ;
        }

        if (tecla == 8 ) {
                tam = tam - 1 ;
        }

        if ( tecla == 8 || tecla >= 48 && tecla <= 57 || tecla >= 96 && tecla <= 105 ) {
                if ( tam <= 4 ) {
                         objeto.value = vr ;
                }
                 if ( (tam > 4) && (tam <= 8) ) {
                         objeto.value = vr.substr(0,tam-4) + '-' + vr.substr( tam - 4, tam ) ;
                }
                 if ( (tam >= 9) && (tam <= 10) ) {
                        objeto.value = '(' + vr.substr(0,2) + ') ' + vr.substr(2,tam-6) + '-' + vr.substr(tam-4,tam) ;
                }
        }
}

function Validar_Cadastro(){
    
	if (document.formCad.Senha01.value!="" && document.formCad.Senha02.value!="") {
        
		var senha01 = document.formCad.Senha01.value;    
		var senha02 = document.formCad.Senha02.value;
		
		if(senha01 != senha02) {
			document.formCad.Senha01.focus();
            alert("As senhas não são iguais!");
            return false;
		}
    } 
	
	if(confirm("Você tem certeza que as informações fornecidas estão corretas?")){
		return true;
	} else {
		return false;
	}	
            
}

function Validar_EditarCad(){
    
	if (document.formCad.Senha01.value!="" && document.formCad.Senha02.value!="") {
        
		var senha01 = document.formCad.Senha01.value;    
		var senha02 = document.formCad.Senha02.value;
		
		if(senha01 != senha02) {
			document.formCad.Senha01.focus();
            alert("As senhas não são iguais!");
            return false;
		}
    }   
	
	if(confirm("Você tem certeza que as informações fornecidas estão corretas?")){
		return true;
	} else {
		return false;
	}	
            
}

function Validar_CadastroEquipe(){
	
	if(confirm("Você tem certeza que as informações fornecidas estão corretas?")){
		return true;
	} else {
		return false;
	}
	
}

//script para abrir popup
function OpenWindow(FileNameToOpen,janela,largura,altura)
{
newWindow = window.open(FileNameToOpen,janela, 'width='+largura+', height='+altura+', toolbar=no, scrollbars=yes, location=no, left=100, top=100')
if (newWindow.open)
{
newWindow.focus()
}
}
