var maxWidth = 1600;
var maxHeight = 1000;
var pageName = "MktVirtual";

function checkWindow(win){
	var maxW = screen.availWidth > maxWidth ? maxWidth : screen.availWidth - 8;
	var maxH = screen.availHeight > maxHeight ? maxHeight : screen.availHeight - 33;
	// alert('callOpen');
	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+ "'");
}