<!--
// Neues Fenster
	function open_window(page,breite,hoehe,name){
		popup=window.open(page,name,"width=" + breite + ",height=" + hoehe + ",scrollbars=no,resizable=yes,menubar=no,locationbar=no");
		popup.focus();
	}

// Voreinstellung Formularfelder löschen
	function onFocusClearDefault( thisValue, defaultValue )
	{
		if ( thisValue == defaultValue )
		{
			return '';
		}
		return thisValue;
	}
// Neues Fenster	
	function launchWindow(file,name,breite,hoehe) {
		window.open(file,name,"width="+breite+",height="+hoehe+",toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=1"); 
	}
	
	function launchWindow2(file,name,breite,hoehe) {
		window.open(file,name,"width="+breite+",height="+hoehe+",toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0"); 
	}
//-->