//script para abertura do select de custas, abre em nova janela quando for arquivos ou servidores diferente de www.tjdft.jus.br
window.addEvent('domready', function() {
	$('custas').addEvent('change', function(el){
		if (this.value != ""){
			rgfile = /^.+\.((PDF)|(DOC)|(XLS)|(RTF)|(HTM))$/;
			if(this.value.toUpperCase().match(rgfile)){//se for um arquivo
				window.open(this.value);//abre em nova janela
			}
			else{
				rgfile = /^HTTPS?:\/\/WWW\.TJDFT\.JUS\.BR\//;
				if(!this.value.toUpperCase().match(rgfile)){//se for de algum servidor diferente do www.tjdft.jus.br
					window.open(this.value);//abre nova janela
				}
				else{
					this.form.action = this.value;//envia o formulario e abre a pagina do option
					this.form.submit();
				}
			}
		}
	});  
});