function mostra(campo){document.getElementById(campo).style.display="block";}
function esconde(campo){document.getElementById(campo).style.display="none";}
function bordaVermelha(campo){document.getElementById(campo).style.border="1px solid #e5a19d";}
function bordaAzul(campo){document.getElementById(campo).style.border="1px solid #d2dee6";}
/****************************
Genericos
****************************/
function checaText(campo,minimo){
	var comprimento = document.getElementById(campo).value.length;
	if(parseInt(comprimento)<parseInt(minimo)){return false;}
	else{	return true;}
}
function validar_email(id){
    var str = document.getElementById(id).value;
    var filter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
    if(filter.test(str)){ valido = true;}
    else{valido = false;}
    return valido;
}
function valorIgual(campo,valor){
	if(document.getElementById(campo).value==valor){return true;}
	else{return false;}
}
function campoConferencia(campo1,campo2){
	if(document.getElementById(campo1).value==document.getElementById(campo2).value){return true;}
	else{return false;}	
}

