// JavaScript Document
<!--
function setfocus() {
	document.forms['suche'].elements['Wort'].focus();
}

function toggledisplay (id, change, show){ 
	if (document.getElementById) { 
		var obj = document.getElementById(id);
		var pic = document.getElementById(change);
		obj.style.display = (obj.style.display=='block'?'none':'block');
		pic.src = (obj.style.display=='block'?'/images/hide.gif':'/images/show.gif');
		if(document.getElementById(show).firstChild.nodeValue = "Show"){
			text = (obj.style.display=='block'?"Hide":"Show");
			document.getElementById(show).firstChild.nodeValue = text;
		}
	} else if(document.all) { // IE
		id.style.display = (id.style.display=='block'?'none':'block');
		change.src = (id.style.display=='block'?'/images/hide.gif':'/images/show.gif');
	} else if (document.layers) { // Netscape 4.x
		document.id.style.display = (document.id.style.display=='block'?'none':'block');
		document.change.src = (document.id.style.display=='block'?'/images/hide.gif':'/images/show.gif');
	}
}

function ChangeAction(lang) {
	document.suche.action = "/cgi-bin/"+lang+"/wort_www";
	document.suche.lang.blur();
	return;
}

// -->
