function validaPesqNot(obj) {
	if (obj.textoPesquisa.value=='') {
	    alert('Preencha o campo LOCALIZAR com o texto para a pesquisa.');
	    obj.textoPesquisa.focus();
	    return;
	}
	if (obj.textoPesquisa.value.length<3) {
	    alert('Digite pelo menos 3 caractres.');
	    obj.textoPesquisa.focus();
	    return;
	}
	obj.submit();
}
/*FUNÇÕES ANTIGAS (SUBSTITUIR SE NECESSÁRIO)*/
function gocanal(url){
    if (url!="") {
        ir_para_migracao(url,false);
    }
}

/*FORMATANDO CAMPOS*/
function formataCampos() {
    var navh = new Is();
    if (navh.ie5up && !navh.ie7) {
        document.getElementById("boxDigPan").style.height='210px';
        document.getElementById("imgPeq").style.height='88px';
        document.getElementById("boxTvPan").style.height='455px';
        document.getElementById("boxTvPanConteudo").style.height='410px';
    }
}

