/**********************************************************************************
* WLW - JavaScript
* Kontaktbox in der Firmenuebersicht
*
* 
*
*********************************************************************************/


function kontaktbox(zustand,firmaid) {
  if (zustand == 'open') {
    document.getElementById('Kontaktboxfirmaid'+firmaid+zustand).style.display = "block";
    document.getElementById('Kontaktboxfirmaid'+firmaid+'close').style.display = "none";
  }
  if (zustand == 'close') {
    document.getElementById('Kontaktboxfirmaid'+firmaid+zustand).style.display = "block";
    document.getElementById('Kontaktboxfirmaid'+firmaid+'open').style.display = "none";
  }
  /* Der IE6 schiebt den Fuss nicht automatisch ans Ende */
  if (navigator.appVersion.indexOf("MSIE 6")) {
	  /* weiterer IE6-Bug: Der Container muss einmal "bewegt" werden */
	  document.getElementById("fussKomplett").style.bottom = 10 + "px";
	  document.getElementById("fussKomplett").style.bottom = 0 + "px";
  }
}
