var win = null;

function pop(mypage,myname,w,h)
{
 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
 TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
 settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=yes,scrollbars=yes,resizable=yes';
 if(win) win.close();
 win=window.open(mypage,myname,settings);
 if(win.window.focus) win.window.focus();
}

function pop2(mypage,myname,w,h,im)
{
 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
 TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
 settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=yes,scrollbars=no,resizable=no';
 if(win) win.close();
 win=window.open(mypage,myname,settings);
 win.document.writeln('<html><head><title>Gross</title></head><body bgcolor="#ffffcc">');
 win.document.writeln('<img src="'+im+'" width="100%" height="100%">');
 win.document.writeln('</body></html>');
 if(win.window.focus) win.window.focus();
}

function pop3(mypage,myname,w,h,im)
{
 LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
 TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
 w2= w + 20;
 h2 = h + 20;
 settings ='height='+h2+',width='+w2+',top='+TopPosition+',left='+LeftPosition+',toolbar=yes,scrollbars=no,resizable=no';
 if(win) win.close();
 win=window.open(mypage,myname,settings);
 win.document.writeln('<html><head><title>Gross</title></head><body bgcolor="#ffffcc">');
 win.document.writeln('<img src="'+im+'" width="'+w+'" height="'+h+'">');
 win.document.writeln('</body></html>');
 if(win.window.focus) win.window.focus();
}

function checkInput()
{
 var obj=self.document.Kontakt;

 if(obj.Datenschutz.checked != true) 
  {
   alert('Bitte akzeptieren Sie die Datenschutzerklaerung!');
   obj.Datenschutz.focus();
   return false;
  }
 return true;
}
