var msgWindow = null;
var msgWindow2 = null;
var msgWindow3 = null;

function neuesFenster(mypage,myname,w,h,scroll)
{
 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+',screenY='+TopPosition+',screenX='+LeftPosition+',scrollbars='+scroll);
 msgWindow = window.open(mypage,myname,settings);
}

function neuesFenster2(mypage,myname,w,h,scroll)
{
 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+',screenY='+TopPosition+',screenX='+LeftPosition+',scrollbars='+scroll);
 msgWindow2 = window.open(mypage,myname,settings);
}

function neuesFenster3(mypage,myname,w,h,scroll)
{
 LeftPosition = 7;
 TopPosition = 7;
 settings = ('height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',screenY='+TopPosition+',screenX='+LeftPosition+',scrollbars='+scroll);
 msgWindow3 = window.open(mypage,myname,settings);
}

function checkIndex()
{
// var jensenWindow = null;
 if (top != self) top.location = "http://www.at-webdesign.de";
// jensenWindow = window.open("jensen.html","","height=300,width=220,top=10,left=10,scrollbars=no");
// jensenWindow.focus();
}

function loadPic()
{
 
}

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

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