function pop(x,w,h) {
	var l = ( (window.screen.width  - w) / 2 );
	var t = ( (window.screen.height - h) / 2 );
	if (window.screen.width <= 1000) {
	    janelinha = window.open(x,'','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=0,left=0,screenX='+l+',screenY='+t+',copyhistory=no,height='+h+',width='+w+'');
	} else {
	    janelinha = window.open(x,'','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=0,left=0,screenX='+l+',screenY='+t+',copyhistory=no,height='+h+',width='+w+'');
	}
}

function pop_r(x,w,h,n) {
	var l = ( (window.screen.width  - w) / 2 );
	var t = ( (window.screen.height - h) / 2 );
    janelinha = window.open(x,n,'leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',copyhistory=no,height='+h+',width='+w+'');
}

// onclick="pop('pagina.htm',100,300)"