function Bedingungen() {
var inhalt = "http://www.topreflex.de/myreflex/bedingungen.html";
var Fenster=window.open(inhalt, 'help','width=500,height=700,top=40,left=100,menubar=no,location=no,status=no,toolbar=no,scrollbars=yes,resizable=no');
if (Fenster.closed == false) Fenster.focus(); // wenn Fenster offen ist focus
}


function Popup(inhalt) {
var Fenster=window.open(inhalt, 'help','width=300,height=340,top=40,left=150,menubar=no,location=no,status=no,toolbar=no,scrollbars=no,resizable=no');
if (Fenster.closed == false) Fenster.focus(); // wenn Fenster offen ist focus
}


function Senden(was) {
if (document.forms[was].suche.value.length < 3) {
		alert("Bitte mindestens 3 Buchstaben angeben.");
		document.forms[was].suche.select();
		return false;
}
document.forms[was].submit();
}
