function centraliza(largura,altura){
	window.moveTo((window.screen.width-largura)/2,(window.screen.height-altura)/2);
}
function abreJanela(arquivo,nome,barra,largura,altura) {
	window.open(arquivo,nome,"resizable=no,toolbar=no,status=no,menubar=no,scrollbars="+barra+",width="+largura+",height="+altura);
}
function validarConsultaExame(f){
    if(!f.idexame.value && !f.pront.value && !f.idpro.value && !f.idprof.value)
    {
        alert('Preencha um ou mais campo(s).');
       
        return false;
    }
}