<!--

function openWindow(theURL,inhalt,features) {
 var win = window.open(theURL,inhalt,features); 
 win.open.focus();
}

function showDiv(id,wert){
	if(wert == 'show')
	{
		document.getElementById(id).style.visibility = 'visible' ;	
	}
	if(wert == 'hide')
	{
		document.getElementById(id).style.visibility = 'hidden' ;	
	}
}

//-->