// Popup
function showSat(URL,SAT,PROPS)
{
 popkont =
 window.open(URL,SAT,PROPS);
 popkont.focus();
}

function showImprint()
{
 popImp =
 window.open('imprint.htm','imprint','width=250,height=300,scrollbars=no');
 popImp.focus();
}

function showAgb()
{
 popAgb =
 window.open('agb.htm','sat','width=480,height=550,scrollbars=yes');
 popAgb.focus();
}

function showSecure()
{
 popAgb =
 window.open('secure.htm','sat','width=480,height=550,scrollbars=yes');
 popAgb.focus();
}




function checkform()
{
   if(document.anfrage.name.value == "")
    {
     alert("Bitte geben Sie Ihren Namen an.");
     document.anfrage.name.focus();
     return false;
    }
	if(document.anfrage.email.value.indexOf('@') == -1) 
   {
     alert("Bitte geben Sie Ihre EMail Adresse an.");
     document.anfrage.email.focus();
     return false;
   }
}
