<!--
function hide(was) 
{ 
 if(document.getElementById)
   document.getElementById(was).style.display = "none";
}
function show(was) 
{
 if(document.getElementById)
   document.getElementById(was).style.display = "block";
}
function showbank() 
{
     show("bank_1");show("bank_2");show("bank_3");show("bank_4");
}
function hidebank() 
{
     hide("bank_1");hide("bank_2");hide("bank_3");hide("bank_4");    
}
function checkfirma() 
{
 if (document.getElementById('firma').value == "firma")
   {
    showfirma();
   }
 else
   {
    hidefirma();
   }
}
function showfirma()
{
     show("firma_1");show("firma_2");show("firma_3");show("firma_4");
     show("firma_5");show("firma_6");show("firma_7");show("firma_8");
     show("firma_9");
}
function hidefirma() 
{
     hide("firma_1");hide("firma_2");hide("firma_3");hide("firma_4");
     hide("firma_5");hide("firma_6");hide("firma_7");hide("firma_8");
     hide("firma_9");     
}
function notyet() 
{ 
  alert('Dieser Bereich wird derzeit überarbeitet und steht erst in Kürze wieder zur Verfügung. \r\rVielen Dank für Ihr Verständnis.');
}
function logout() 
{ 
  var abfrage;
  abfrage=confirm("Möchten Sie sich abmelden?");
  if (eingabe==false) {return false;} 
}
function securearea() 
{ 
  alert('Dieser Bereich ist nur für 4Future-Mitglieder. Bitte nutzen Sie den Login, um sich anzumelden.\r\rNach Ihrer Anmeldung stehen Ihnen alle Service-Bereiche zur Verfügung.');
}

function infoarea() 
{ 
  alert('Hier gelangen Sie in unseren check-in-Reiseshop');
}

function analog_disabled()
 {
    document.form.antrag_rufnummer_2.disabled=true;
    document.form.antrag_rufnummer_3.disabled=true;
    document.form.antrag_rufnummer_4.disabled=true;
    document.form.antrag_rufnummer_5.disabled=true;
    document.form.antrag_rufnummer_6.disabled=true;
    document.form.antrag_rufnummer_7.disabled=true;
    document.form.antrag_rufnummer_8.disabled=true;                
    document.form.antrag_rufnummer_9.disabled=true;
    document.form.antrag_rufnummer_10.disabled=true;
 }
 
function isdn_enable()
 {
     document.form.antrag_rufnummer_2.disabled=false;
     document.form.antrag_rufnummer_3.disabled=false;
     document.form.antrag_rufnummer_4.disabled=false;
     document.form.antrag_rufnummer_5.disabled=false;
     document.form.antrag_rufnummer_6.disabled=false;
     document.form.antrag_rufnummer_7.disabled=false;
     document.form.antrag_rufnummer_8.disabled=false;
     document.form.antrag_rufnummer_9.disabled=false;
     document.form.antrag_rufnummer_10.disabled=false;  
 }
 
function boxes(wert,zahl) 
{ //v1.1
for (var i=1; i<zahl; i++)
  {
    document.getElementById(i).checked = wert;
  }
}

function clearbox() 
{ //v1.1
 document.getElementById("allchecked").checked = false;
}

var ProcessingText = "Bitte warten";
var cnt=0;
function doValidate(f){
f.senden.value=ProcessingText;
f.senden.disabled=true;
if (cnt==0)f.submit();
cnt++;
}

var ProcessingText = "Bitte warten";
var cnt=0;
function doValidateLogin(f){
f.login.value=ProcessingText;
f.login.disabled=true;
if (cnt==0)f.submit();
cnt++;
}
//-->
