/**
 * @author JONAS
 */

function estado(){
	if(document.cadastro.pais_id.value != 31){
		document.cadastro.estado_id.disabled = true;
		document.cadastro.cidade.disabled = true;
	}
	else{
		document.cadastro.estado_id.disabled = false;
		document.cadastro.cidade.disabled = false;
	}
}

function catsubmit(){
  document.categoria.submit();
}

function popup(url){
  window.open (url, 'newWin', 'scrollbars=yes,status=yes,menubar=no,toolbar=no,screenX=200,screenY=100,width=500,height=400');
}

function enableButton($obj){
	if ( $obj == true ){
		$("#buttonCadastro").attr("disabled", 0);
		$("#buttonCadastro").attr("class", "botoes");
	} else {
		$("#buttonCadastro").attr("disabled", 1);
		$("#buttonCadastro").attr("class", "botoes_disabled");
	}
}
