var faux=null;
var pic=new Image();

function popUp(pic,w,h) {
 width=w+60;
 height=h+80;
 options= "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1"

 faux=window.open('','newWin',options);
 var fd=faux.document;
 fd.open();
 fd.write('<html><head><title>Gewerbeverband-Erdweg</title></head>');
 fd.write('<body bgcolor="#dadada" onLoad="window.focus()">');
 fd.write('<div align="center"><table border="0" cellpadding="5" width="'+w+'">');
 fd.write('<tr><td align="center" valign="middle"><img src="' + pic + '" width="' + w + '" height="' + h + '"></td></tr>');
 fd.write('<tr><td align="center" valign="middle"><a href="javascript:window.close();">Schliessen</a></td></tr>');
 fd.write('</table></div></body></html>');
 fd.close();
 }
 
  
 function popUp_presse(pic,w,h,dat,zeitung) {
 width=w+60;
 height=500;
 options= "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrollbars=1"

 faux=window.open('','newWin',options);
 var fd=faux.document;
 fd.open();
 fd.write('<html><head><title>Gewerbeverband-Erdweg</title></head>');
 fd.write('<body bgcolor="#dadada" onLoad="window.focus()">');
 fd.write('<div align="center"><table border="0" cellpadding="5" width="'+w+'">');
 fd.write('<tr><td align="center"><h2 style="color: Black;">' + dat + '&nbsp;' + zeitung + '</h2></td></tr>');
 fd.write('<tr><td align="center" valign="middle"><img src="' + pic + '" width="' + w + '" height="' + h + '"></td></tr>');
 fd.write('<tr><td align="center" valign="middle"><a href="javascript:window.close();">Schliessen</a></td></tr>');
 fd.write('</table></div></body></html>');
 fd.close();
 }
 
 function popUp_ega(pic,w,h,alter) {
 width=w+60;
 height=h+100;
 options= "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1"

 faux=window.open('','newWin',options);
 var fd=faux.document;
 fd.open();
 fd.write('<html><head><title>Gewerbeverband-Erdweg</title></head>');
 fd.write('<body bgcolor="#dadada" onLoad="window.focus()">');
 fd.write('<div align="center"><table border="0" cellpadding="5" width="'+w+'">');
 fd.write('<tr><td align="center"><h2 style="color: Black;">' + alter + '</h2></td></tr>');
 fd.write('<tr><td align="center" valign="middle"><img src="' + pic + '" width="' + w + '" height="' + h + '"></td></tr>');
 fd.write('<tr><td align="center" valign="middle"><a href="javascript:window.close();">Schliessen</a></td></tr>');
 fd.write('</table></div></body></html>');
 fd.close();
 }
            
function isValid() {
  var msg="";
  
  if (kontaktFormular.email.value.indexOf("@") < 1 ||
      kontaktFormular.email.value.indexOf(".") < 1) {
     msg += "- Die E-Mailadresse ist nicht korrekt ! -\n";
     }
  
  if (kontaktFormular.name.value == "") {
     msg += "- Leeres Feld: Name -\n";
     }
  
  if (kontaktFormular.email.value =="") {
     msg += "- Leeres Feld: E-Mail-Adresse -\n";
     }
     
  if (kontaktFormular.betreff.value == "") {
     msg += "- Leeres Feld: Betreff - \n";
     }
     
  if (kontaktFormular.nachricht.value == "") {
     msg += "- Leeres Feld: Nachricht -\n";
     }
     
  if (msg == "") {
      return true;
      }
     alert(msg);
     return false;
 }              
 

