function bilder(b1,show1,b2,show2,b3,show3,b4,show4,b5,show5) { 
if(document.getElementById){
if(b1 != null){document.getElementById(b1).style.display = show1;
               document.getElementById(b1).style.visibility="visible";
}
if(b2 != null){document.getElementById(b2).style.display = show2;
               document.getElementById(b2).style.visibility="visible";
 }
if(b3 != null){document.getElementById(b3).style.display = show3;
               document.getElementById(b3).style.visibility="visible";
}
if(b4 != null){document.getElementById(b4).style.display = show4;
               document.getElementById(b4).style.visibility="visible";
}
if(b5 != null){document.getElementById(b5).style.display = show5;
               document.getElementById(b5).style.visibility="visible";
}
}
}

function cytshort() {
  if(document.getElementById)
  document.getElementById("cytshort").style.display = "block";
  document.getElementById("cytdesc").style.display = "none";
}
function cytdesc() {
  if(document.getElementById)
  document.getElementById("cytdesc").style.display = "block";
  document.getElementById("cytshort").style.display = "none";
}
function CreateBookmarkLink() {
  title = "Sportsoutlet24"; 
  url = "http://www.sportsoutlet24.de"; 
  if (window.sidebar) { // Mozilla Firefox Bookmark	
  window.sidebar.addPanel(title, url,"");
  } else if( window.external ) { // IE Favorite
  window.external.AddFavorite( url, title);
  }	else { 
      alert("Diese Funktion wird leider von Ihrem Browser nicht unterstützt");}
  }
