// JavaScript Document

// JavaScript Document

// Display Show or Hide (für die Sprache verwendet)
function showhide(name) {
		var e = document.getElementById(name);
		e.style.display = (e.style.display == 'block') ? 'none' : 'block';
	}
	
// PopUp Function
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=500,height=600,toolbar=no,menubar=no,resizable=no,location=no,scrollbars=yes');
return false;
}