// JavaScript Document
var inc=0;
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(openPage) {
	var openPage = !openPage ? "site" : openPage;
	var bw = 0;
	var bh = 0;
	//
	if (screen.width > 1280){
		callOpen(openPage,1280,920);
	} else if (screen.width < 1024){
		callOpen(openPage, screen.availWidth-8, screen.availHeight-33);
	} else {
		window.location.href = openPage;
	}
}

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