// JavaScript Document
	function openWin(url,w,h) 
		{
		
		NewWindow = window.open(url,"legal","width="+w+",height="+h+",left=150,top=150,scrollbars=0,status=0,resizable=0");
		NewWindow.focus();
	}

// Neues Fenster mit Scrollbars
	function openWinScr(url,w,h) 
		{
		
		NewWindow = window.open(url,"legal","width="+w+",height="+h+",left=150,top=150,scrollbars=1,status=0,resizable=0");
		NewWindow.focus();
	}
	
// Layer ein und ausblenden	
function showDiv(idname){
 if(document.getElementById(idname).style.display=='none')
 	document.getElementById(idname).style.display='block';
 else 
 	document.getElementById(idname).style.display='none';
 }
