$(document).ready(function(){
    $('#apriFinestra').click(function(){
    	
    	width = screen.width;
    	height = screen.height;
        window.open('../commons/home.php?r='+width+'x'+height, "_blank", "width="+width+", height="+height+", scrollbars=yes, resizable=no, toolbars=no, menubar=no, location=no, directories=no, status=no, copyhistory=no");
        return false;
        
    });
});