//PopUp AGB
function makePopUpAGB(url)
{
   newwindow=window.open(url,'popUpAGB','width=500,height=550,scrollbars=yes,left=0,top=0');
       
   if(window.focus)
   {
      newwindow.focus()
   }
}

//PopUp Links
function makePopUpLinks(url)
{
   newwindow=window.open(url,'popUpLinks','width=500,height=460,scrollbars=yes,left=0,top=0');
       
   if(window.focus)
   {
      newwindow.focus()
   }
}

//PopUp schliessen
function closePopUp()
{
   window.close();
}
