// JavaScript Document
function redirectPage(openPage) {
	var openPage = !openPage ? "site.php?l=tecondi" : 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, "projetocelebra", "'toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,left=0,top=0,width="+width+",height="+height+ "'");
}