function openWindow(url, wName, titel, w, h, x, y) {
  if (!x) x=100;
  if (!y) y=150;
  if(h>450) y=1;
  h = h + 100;

    var options = "width=" + w + ",height=" + h + ",left=" + (x+5) + ",top=" + y;
    options += "resizable='no',scrollbars='auto',status='no'";
    options += "menubar='no',toolbar='no',location='no',directories='no', noresize";

    var newWin = window.open('/bildanzeige.php?url='+url+'&titel='+titel, wName, options);
  }

function openWindowAnfahrt(lokalid, wName, titel, w, h, x, y) {
  if (!x) x=100;
  if (!y) y=150;
  if(h>450) y=1;
  h = h + 100;

    var options = "width=" + w + ",height=" + h + ",left=" + (x+5) + ",top=" + y;
    options += "resizable='no',scrollbars='auto',status='no'";
    options += "menubar='no',toolbar='no',location='no',directories='no', noresize";

    var newWin = window.open('/lokaldetail.php?lokalid='+lokalid+'&art=anfahrt', wName, options);
  }

function openWindowReservierung(lokalid, wName, titel, w, h, x, y) {
  if (!x) x=100;
  if (!y) y=150;
  if(h>450) y=1;
  h = h + 100;

    var options = "width=" + w + ",height=" + h + ",left=" + (x+5) + ",top=" + y;
    options += "resizable='no',scrollbars='auto',status='no'";
    options += "menubar='no',toolbar='no',location='no',directories='no', noresize";

    var newWin = window.open('/lokaldetail.php?lokalid='+lokalid+'&art=reservierung', wName, options);
  }
  
function openWindowBild(url, wName, w, h, mStat){
  var options = "width=" + (w + 25) + ",height=" + (h + 25) + ",screenX=10,screenY=10,";
  options += "resizable=yes,scrollbars=no,status=no,";
  options += "menubar=no,toolbar=no,location=no,directories=no";

  var newWin = window.open('', wName, options);
  newWin.moveTo(10,10);
  newWin.focus();
  newWin.document.write("<html><head><title>Bild</title></head>\n<body bgcolor='#ffffff' text='#808080'>");
  newWin.document.write("\n<table border=0 cellpadding=0 cellspacing=0><tr>");
  newWin.document.write("<td valign=middle align=center><img src='" + url + "'></td>");
  newWin.document.write("</tr></table>");
  newWin.document.write("\n</body></html>");
  newWin.document.close();
  }
  
  