	function ist_suchwort() {
		var s = document.searchform.searchword.value;
		
		if( s.length < 3 ) {
			alert("Bitte mindestens 3 Zeichen eingeben!\n\nPlease type in min. 3 Chars!");
			document.searchform.searchword.focus();
			return false;
		}
	}

	function ewin() {
		URL = '../inc/empfehlen.php';
		window.open(URL,'Empfehlen','width=500,height=450,screenX=100,screenY=0,menubar=no,toolbar=no,status=no,resizable=no, scrollbars=yes');
	}
	
	function contactwin() {
		URL = '../inc/kontakt.php';
		window.open(URL,'Kontaktform','width=500,height=640,screenX=100,screenY=0,menubar=no,toolbar=no,status=no,resizable=no, scrollbars=yes');
	}

	function formwin(URL) {
		window.open(URL,'Form','width=640,height=620,screenX=100,screenY=0,menubar=no,toolbar=no,status=no,resizable=no, scrollbars=yes');
	}
	
	function formstart(menuid) {
		URL = "../inc/formstart.php?menuid="+menuid;
		window.open(URL,'Form','width=640,height=620,screenX=100,screenY=0,menubar=no,toolbar=no,status=no,resizable=no, scrollbars=yes');
	}
	

