// JavaScript Document

function popup(url, width, height)
  {
  w=width + 20;
  h=height + 5;
  MyWindow = window.open(url, "info", "height="+h+",width="+w+",locationbar=false,menubar=false,status=no,resizable=yes,scrollbars=yes,left=50,top=20");
  MyWindow.focus();
}