// JavaScript Document
var alltags=document.all? document.all : document.getElementsByTagName("*");
for (i=0; i<alltags.length; i++){
	if (alltags[i].className=='no_js')
		alltags[i].innerHTML='O suporte a CSS está desabilitado em seu navegador, por favor habilite e atualize a página';
}

function redirectPage(page) {
	var page = !page ? "site" : page;
	//
	if (screen.width > 1280 || screen.height > 1200){
		callOpen(page, 1280, 920);
	} else if (screen.width < 1024){
		callOpen(page, screen.availWidth-8, screen.availHeight-33);
	} else {
		window.location.href = page;
	}
}

function callOpen(page, width, height){
	mjb = window.open(page, "convencao", "'toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,left=0,top=0,width="+width+",height="+height+ "'");
}