function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}


function oeffnen1(bild,breite,hoehe,titel) {
posLeft=250;
posTop=100;
tb=breite+40;
th=hoehe+40;
bb=breite+80;
bh=hoehe+80;
var w = (screen.width / 2) - (bb / 2);
posLeft=w;
newWindow = window.open("","newWindow", "width="+breite+", height="+hoehe+", left="+posLeft+", top="+posTop+", toolbar=no,status=no,scrollbars=no,resizable=no,menubar=no");
newWindow.document.open();
newWindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">'); 
newWindow.document.write('<html><title>'+titel+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
newWindow.document.write('<table align="center" width='+breite+' height='+hoehe+' cellpadding="0" cellpadding="0">');
newWindow.document.write('<tr><td align="center"><img src='+bild+' width='+breite+' height='+hoehe+' alt=""></td></tr></table>'); 
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
}


function checkkontakt(){
     if(document.f.Betreff.selectedIndex < 2){
	 alert ("Bitte wählen Sie einen Betreff aus!");
             document.f.Betreff.focus();
             return false;             }    
        
 if (document.f.Name.value == "")       {
             alert ("Bitte geben Sie Ihren Namen  ein!");
             document.f.Name.focus();
             return false;             }
if ((document.f.Telefon.value == "")&&(document.f.Fax.value == "")&&(document.f.Email.value == ""))
             {
             alert ("Bitte geben Sie eine Telefonnummer, eine Faxnummer und/oder Ihre Mailadresse ein!");
		document.f.Telefon.focus();             
		return false;
             }
if(document.f.Email.value ==""){
	return true;}
if(document.f.Email.value.indexOf('@') == -1) {
   alert("Bitte geben Sie eine gültige Mailadresse ein!");
   document.f.Email.focus();
   return false;
  }
        return true;
        }

