var openBrWindow = null;
var x = 10;
var y = 10;

function imgPopUp(url,w,h)
{
  if (!openBrWindow || openBrWindow.closed)
  {
    properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,";
    openBrWindow = window.open('','bild','width=' + w + ', ' + 'height=' + h,properties);
  }
  else
  {
    openBrWindow.close();
    properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,";
    openBrWindow = window.open('','bild','width=' + w + ', ' + 'height=' + h,properties);
  }
    openBrWindow.document.open();
    openBrWindow.document.write('<HTML><HEAD>');
    openBrWindow.document.write('<TITLE>Bild - Gro&szlig;ansicht</TITLE>');
    openBrWindow.document.write('</HEAD>');
    openBrWindow.document.write('<BODY marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">');
    openBrWindow.document.write('<A HREF="JavaScript:self.close()"><IMG SRC="'+url+'" HSPACE="0" VSPACE="0" BORDER="0"></A>');
    openBrWindow.document.write('</BODY>');
    openBrWindow.document.write('</HTML>');
    openBrWindow.document.close()

    openBrWindow.focus();

}

function sendeFormular(x) {
		if (document.getElementById("input17").value=="" || document.getElementById("input22").value=="" || document.getElementById("input24").value=="" || document.getElementById("input25").value=="") {
		alert("Bitte füllen Sie alle mit * gekennzeichneten Felder aus!");
		} else {
			document.form1.submit();
		}
}


