// JavaScript Document
function cadastrarCurriculo(){
	document.getElementById("iframe_login").contentWindow.novo();
}

function abrirDetalheVaga(id){
	document.getElementById("div_vaga_1").style.display = "";
	document.getElementById("if_vaga_1").src = "ifr_trabalhe_vaga.php?vg=" + id;
}

function fecharDetalheVaga(id){
	document.getElementById("div_vaga_1").style.display = "none";
	document.getElementById("if_vaga_1").src = "";
}