// JavaScript Document



// per centrare sitemap

function sitemap() {
   var w = 600;
   var h = 600;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
           window.open("sitemap.php","new","scrollbars=yes,status=no,nosave,resizable=no,width=" + w + ",height=" + h + ",top=" + t + ",left=" + l).focus()
}



// per centrare privacy

function privacy() {
   var w = 600;
   var h = 600;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
   
            window.open("privacy.php","new","scrollbars=yes,status=no,nosave,resizable=no,width=" + w + ",height=" + h + ",top=" + t + ",left=" + l).focus()
}


