/****************************************

Funktion um neues Fenster zu öffnen
*****************************************/
function openWindow(url, wName, w, h, x, y) {
	if (!x) x=100;
	if (!y) y=150;
	
    var options = "width=" + w  + ",height=" + h  + ",screenX=10,screenY=10,";
    options += "resizable=yes,scrollbars=yes,status=no,";
    options += "menubar=no,toolbar=no,location=no,directories=no";

    var newWin = window.open('', wName, options);
    newWin.moveTo(x,y);
    newWin.focus();
    newWin.document.write("<html><body bgcolor=#FBF9F4 text=#999999 style='margin:0px' marginwidth='0' marginheight='0'>");
    newWin.document.write("<table border=0 width=100% height=100%><tr>");
    newWin.document.write("<td valign=middle align=center>Wird geladen...</td>");
    newWin.document.write("</tr></table>");
    newWin.document.write("</body></html>");
    newWin.document.close();
    if (url>'') newWin.document.location=url;
    newWin.document.title = "WLB";
  }

  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();
}