<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function printurl(URL) 
{ 
	window.open(URL,'print','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=no,width=800,height=600,left=10,top=10'); 
}

function ShowMail(xprefix,xendung) {
 document.write('Email: \<a href=\"mailto:' + xprefix + '@' + xendung + '">');
 document.write(xprefix + ' (at) ' + xendung + '</a>');
}
 
function goTo(URL) {
    window.location.href = URL; 
}

function showcontent(id)
{
  if (document.getElementById(id).style.display == '') 
  {
	document.getElementById(id).style.display = 'none'; 
  }
  else
  {
	document.getElementById(id).style.display = ''; 
  }
}

function hidecontent(id)
{
	document.getElementById(id).style.display = 'none'; 
}
//-->