// JavaScript Document
    function OpenTo(url, name, width, height) {
      var win;
      var options;

      options = "height=" + height + ",width=" + width
              + ",location=yes,menubar=yes,resizable=yes,scrollbars=yes"
              + ",status=yes,toolbar=yes";

      win = window.open(url, name, options);
      return false;   // don't execute the link
}