// JavaScript Document for opening reservation form.
  function openW(){
/*      var width = screen.Width - 50;
      var height = screen.Height - 200;
      var str = "height=" + height + ",innerHeight=" + height;
      str += ",width=" + width + ",innerWidth=" + width;
      if (window.screen) {
        var ah = screen.availHeight - 100;
        var aw = screen.availWidth - 10;
        var xc = (aw - width) / 2;
        var yc = (ah - height) / 2;
        str += ",left=" + xc + ",screenX=" + xc;
        str += ",top=" + yc + ",screenY=" + yc;
      }
      window.open('','obm22','scrollbars=yes,status=yes,menubar=no,toolbar=yes,' + str);
*/
      window.document.checka.submit();
  }