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

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

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