// Funktion um Bild in popup-Fenster anzuzeigen
function openWindowBild(url, wName, titel, textschliessen, w, h, x, y, mStat) {
	if (!x) x=100;
	if (!y) y=50;
	if (h > 750) h = 700;
	if (!mStat) mStat="no"
    var options = "width=" + w + ",height=" + h + ",screenX=" + x + ",screenY=" + y + ",";
    options += "resizable=yes,scrollbars=yes,status=no";
    options += "menubar=" + mStat + ",toolbar=no,location=no,directories=no, noresize";

    var newWin = window.open('', wName, options);
		newWin.moveTo(x,y);
    newWin.focus();
    newWin.document.write("<html><head>");
		newWin.document.write("<body bgcolor=ffffff text=808080 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>.......</td>");
    newWin.document.write("</tr></table>");
    newWin.document.write("</body></html>");
    newWin.document.close();
    if (!(url == ''))
    {
      newWin.document.write("<html><head><title>" + titel + "</title></head><body bgcolor=ffffff text=808080 style='margin:0px' marginwidth='0' marginheight='0'>");
      newWin.document.write("<table border=0 width=100% height=100% cellpadding=0 cellspacing=0><tr><td align='center'>");
      newWin.document.write("<img src='");
      newWin.document.write(url);
      newWin.document.write("' border='0'><br><br><a href = 'javascript: window.close()' style='font-family:Arial,Helvetica,sans-serif;font-size:12px;color:#ff0000;text-decoration:none;font-weight:bold;'>" + textschliessen + "</a></td></tr></table></body></html>");
      //newWin.document.location=url;
      newWin.document.title.value = "Kaercher-InfoNet";
    }
  }
// Funktion um Bild in popup-Fenster anzuzeigen
function openWindow(url, wName, titel, textschliessen, w, h, x, y, mStat) {
	if (!x) x=100;
	if (!y) y=50;
	if (h > 750) h = 700;
	if (!mStat) mStat="no"
    var options = "width=" + w + ",height=" + h + ",screenX=" + x + ",screenY=" + y + ",";
    options += "resizable=yes,scrollbars=yes,status=no";
    options += "menubar=" + mStat + ",toolbar=no,location=no,directories=no, noresize";

    var newWin = window.open('', wName, options);
		newWin.moveTo(x,y);
    newWin.focus();
    newWin.document.write("<html><head>");
		newWin.document.write("<body bgcolor=ffffff text=808080 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>........</td>");
    newWin.document.write("</tr></table>");
    newWin.document.write("</body></html>");
    newWin.document.close();
    if (!(url == ''))
    {
		newWin.document.location=url;
    }
  }
// Funktion um Url in popup-Fenster zu öffnen
function openWindow1(url, wName, w, h,x,y, mStat) {
	if (!x) x=500;
	if (!y || y > 500) y=500;
	if (!mStat) mStat="no"
    var options = "width=" + w + ",height=" + h + ",screenX=" + x + ",screenY=" + y + ",";
    options += "resizable=yes,scrollbars=auto,status=no";
    options += "menubar=" + mStat + ",toolbar=no,location=no,directories=no, noresize";

    var newWin = window.open('', wName, options);
    newWin.focus();
    newWin.document.write("<html>");
		newWin.document.write("<body bgcolor=ffffff text=808080 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>.........</td>");
    newWin.document.write("</tr></table>");
    newWin.document.write("</body></html>");
    newWin.document.close();
    if (!(url == ''))
    {
      newWin.document.location=url;
      newWin.document.title.value = "Kaercher-InfoNet";
    }
  }

function conf()
{
	blnOverwrite = confirm("Wollen Sie die bereits eingetragene Datei überschreiben?");
	return blnOverwrite;
}