// JavaScript Document

function PopupCentrata(width,height,url) {
   var w = width;
   var h = height;
   var u = url;
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open(u,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
 }