function showFAQ(faq_id, gesamt, span_id, ie)
{
 var id = 'faq';
  for (var i = 1; i <= gesamt; i++)
  {
     document.getElementById('span' + i).style.color = "#000";
     document.getElementById('span' + i).style.fontWeight = "normal";
     document.getElementById(id + i).style.display = "none";
  }

  document.getElementById(faq_id).style.display = "block";
  document.getElementById('span'+span_id).style.color = "#076A92";
  document.getElementById('span'+span_id).style.fontWeight = "bold";

  if(ie == false)
     document.getElementById('footer2').style.position = "relative";


}


function epLINK(address)
{
  document.location = "mailto:" + address.replace(/:/, "@");
}


function MM_preloadImages()
{
  var d=document;
  if(d.images)
  {
     if(!d.MM_p)
       d.MM_p=new Array();
     var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
     for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0)
   {
      d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];
   }
  }
}


function preLoad()
{
   MM_preloadImages('images/de/clipdienst_off.png','images/de/clipdienst_on.png','images/de/clipcheck_on.png','images/de/clipcheck_off.png','images/de/download_off.png','images/de/download_on.png','images/de/kontakt_on.png','images/de/kontakt_off.png','images/de/partner_on.png','images/de/partner_off.png');
}


function clearField(id)
{
    var tmp     = document.getElementById(id).value;
    var content = tmp.toLowerCase();

    if(content == " benutzername" || content == "username")
       document.getElementById(id).value = "";

    document.getElementById(id).style.backgroundColor = "#F4AF4A";

}

function clearPasswd(hideID, showID)
{
    document.getElementById(hideID).style.display = "none";
    document.getElementById(showID).style.display = "inline";
    document.getElementById(showID).style.backgroundColor = "#F4AF4A";
    document.getElementById(showID).focus();
}

function markField(id)
{
    document.getElementById(id).style.backgroundColor = "#F4AF4A";
    document.getElementById(id).focus();
}

function checkField(id)
{
    var content = document.getElementById(id).value;

    if(content == "")
       document.getElementById(id).value = " BENUTZERNAME";

   document.getElementById(id).style.backgroundColor = "#fff";
}


function checkPasswd(checkID,showID)
{
    var content = document.getElementById(checkID).value;

    if(content == "")
    {
      document.getElementById(checkID).style.display = "none";
      document.getElementById(showID).style.display = "inline";
    }
    document.getElementById(showID).style.backgroundColor = "#fff";
    document.getElementById(checkID).style.backgroundColor = "#fff";
}


GB_myShow = function(caption, url, /* optional */ height, width, callback_fn) {
    var options = {
        caption: caption,
        height: height || 250,
        width: width || 500,
        fullscreen: false,
        show_loading: false,
        callback_fn: callback_fn
    }
    var win = new GB_Window(options);
    return win.show(url);
}

function switchStyleBtn(id, image)
{
    document.getElementById(id).style.background = "url('" + image + "')";
}
