function gotoURL(URL) {
  window.location.href = URL;
}

function showDIV(ID) {
  if (document.getElementById) {
    var v;
    v = document.getElementById(ID).style.visibility;
    if (v == '') {
      v = 'hidden';
    }
    if (v == "hidden") {
      document.getElementById(ID).style.visibility = "visible";
      document.getElementById(ID).style.position = "relative";
    }
    else {
      document.getElementById(ID).style.visibility = "hidden";
      document.getElementById(ID).style.position = "absolute";
    }
  }
}

function showSub(id) {
	document.getElementById(id).style.visibility = "visible";
}

function hideSub(id) {
	document.getElementById(id).style.visibility = "hidden";
}

function openAWin(IMG) {
  window.open(IMG,'Anfahrt','width=410,height=410');
}

function openWin (Adresse,Name,Breite,Hoehe,Scroll) {
  Win = window.open(Adresse, Name, "width="+Breite+",height="+Hoehe+",scrollbars="+Scroll+",left="+(screen.availWidth/2-Breite/2)+",top="+(screen.availHeight/2-Hoehe/2));
  Win.focus();
}

var timer; 
var i=0; 

function scrollRightDiv(){ 
clearTimeout(timer); 
d=document.getElementById('scrollContent') 
x=d.scrollLeft; 
if (x>=0) {
  document.getElementById('scrollLeft').innerHTML='<img src="images/pfeil_links_1.gif" border="0" alt="">';
}
if(x<d.scrollWidth-d.offsetWidth){ 
x++; 
d.scrollLeft=x; 
timer=setTimeout('scrollRightDiv()',1); 
} 
else{ 
clearTimeout(timer); 
document.getElementById('scrollRight').innerHTML='<img src="images/pfeil_rechts_0.gif" border="0" alt="">'; 
} 
} 

function scrollLeftDiv(){ 
clearTimeout(timer); 
d=document.getElementById('scrollContent') 
x=d.scrollLeft; 
if (x<d.scrollWidth-d.offsetWidth) {
  document.getElementById('scrollRight').innerHTML='<img src="images/pfeil_rechts_1.gif" border="0" alt="">';
}
if(x<=d.scrollWidth-d.offsetWidth && x>=1){ 
x--; 
d.scrollLeft=x; 
timer=setTimeout('scrollLeftDiv()',1); 
} 
else { 
clearTimeout(timer); 
document.getElementById('scrollLeft').innerHTML='<img src="images/pfeil_links_0.gif" border="0" alt="">'; 
} 
} 

