var maxWidth = 1680;
var maxHeight = 1000;
var pageName = "Encarnação do Demônio";

function checkWindow(win){
	var maxW = screen.availWidth > maxWidth ? maxWidth : screen.availWidth - 8;
	var maxH = screen.availHeight > maxHeight ? maxHeight : screen.availHeight - 33;
	callOpen(win, maxW, maxH);
}

function callOpen(openPage, width, height){	
	window.open(openPage, pageName, "'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=0,top=0,width="+width+",height="+height+ "'");
	var windowWidth = getWindowWidth();
	var windowHeight = getWindowHeight();
	window.moveTo((screen.width / 2) - (windowWidth / 2 + 4), (screen.height / 2) - (windowHeight / 2 + 30));
}