// Copyright 2005 JP7



function abipe_iaeste_estudantes_vagas_acao(distribuicao_id, distribuicao_i, acao){
	location = 'estudantes_vagas_acao.php?distribuicao_id=' + distribuicao_id + '&distribuicao_i=' + distribuicao_i + '&acao=' + acao;
}

function abipe_iaeste_estudantes_vagas_info(id){
	openPopup('estudantes_vagas_info.php?vaga_id='+id,'',800,600);
}

function abipe_estudantes_vagas_info(id){
	openPopup('vagasinfo.php?vaga_id='+id,'',800,600);
}

function abipe_iaeste_estudantes_pontos_info(id_tipo, id){
	openPopup('estudantes_ganhepontos_info.php?id_tipo=' + id_tipo + '&id=' + id, '', 800, 600);
}

function abipeCarregando (idObjCarregando, idObjMostrar)
{
	$("#"+idObjCarregando).hide();
	$("#"+idObjMostrar).show();
	if (is.ie && is.v < 7) {
		var footerBottom = $('#footer').css('bottom');
		$('#footer').css('bottom', 1);
		$('#footer').css('bottom', footerBottom);
	}
}

function makeIdiomasObligatory(objeto) {
	if (objeto) {
		var trLabel;
		objeto.each(function() {
			trLabel = $(this).parent().parent().children('th.obrigatorio');
			$(this).attr('obligatory', 'yes');
			if (trLabel) {
				$(this).attr('label', trLabel.text().replace(':', '').replace('*', ''));
			}
		});
	}
}