
function toggleVisibility(id) {
  if ( document.getElementById('info_' + id).style.visibility == 'visible') {
	  document.getElementById('info_' + id).style.visibility='hidden';
  }
  else {
	  document.getElementById('info_' + id).style.visibility='visible';
  }
}

var nachricht="N&auml;chster Gig am ...";
var text;
var verzoegerung=150;
var timerId;

function ticker() {
	text=nachricht;
	document.frm.ticker.value=text;
	nachricht=nachricht.substring (1, nachricht.length) + nachricht.substring (0, 1);
	timerId=setTimeout("ticker()", verzoegerung);
}
