<!--
function validaFormGeral(form_obj) {
	for (i=0;i<form_obj.length;i++) {
		if (form_obj[i].value == "" && form_obj[i].lang == "br") {
			alert("Preencha corretamente todos os campos obrigatórios!");
			return false;
		}
	}
	return true;
}

function validaFormVagas(form_obj) {
	for (i=0;i<form_obj.length;i++) {
		if (form_obj[i].value == "" && form_obj[i].lang == "br") {
			alert("Preencha corretamente todos os campos obrigatórios!");
			return false;
		}
	}
	if (document.getElementById("uf").value=='#' || document.getElementById("cidade").value=='#' ) {
		alert("Preencha corretamente todos os campos obrigatórios!");
		return false;
	}
	return true;
}

function validaForm(form_obj) {
	for (i=0;i<form_obj.length;i++) {
		if (form_obj[i].value == "" && form_obj[i].lang == "br") {
			alert("Preencha corretamente todos os campos obrigatórios!");
			return false;
		}
	}
	if (document.getElementById("cargo_desejado").value == "Outra Vaga - "){
		if (document.getElementById("outra").value == "-"){
			alert("Preencha corretamente todos os campos obrigatórios!");
			return false;
		}
	}
	return true;
}

function windowpop(theURL,winName,features) {
  window.open(theURL,winName,features);
}
-->