

function openPopup(url,w,h,scrolable, title)
{
  width = w;
  height = h;
  PosX = (screen.width - width) / 2;
  PosY = (screen.height - height) / 2;
  
  popup = window.open(url, title, "width=" + width + ",height="+height+",location=no,menubar=no,personalbar=no,resizable=yes, top="+PosY+",left="+PosX+",screenX=" + PosX +",screenY=" + PosY + ",locationbar=no,scrollbars=" + scrolable + ",directories=no,statusbar=no,toolbar=no");  
  if (window.focus) {popup.focus()}
}



