function popup_fraktion(WHO){
	fenster=window.open('','mitglied','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,scrollbars=no,width=750,height=700');
	fenster.focus();
	fenster.location=WHO;
}
function popup_wahlprogramm(){
	fenster_wahl=window.open('/wahlprogramm.php','wahlprogramm','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,scrollbars=no,width=300,height=350');
	fenster_wahl.focus();
}
function popup_dialog(){
	fenster=window.open('/comments/','Dialog','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=yes,scrollbars=yes,width=700,height=400');
	fenster.focus();
}
function popup_mitglied(){
	fenster=window.open('/freiheit/','mitglied','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,scrollbars=yes,width=630,height=350');
	fenster.focus();
}
function results(ID){
	fenster_results=window.open('','results','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,width=204,height=400');
	fenster_results.focus();
	fenster_results.location="/results.php?ID="+ID;
}
function FormValidator(theForm){
	if (theForm.Ihre_Email.value == "") {
		alert("Bitte geben Sie Ihre Emailadresse ein.");
		theForm.Ihre_Email.focus();
		return (false);
	}
    else {
		if (theForm.Ihr_Name.value == "") {
			alert("Bitte geben Sie Ihren Namen ein.");
			theForm.Ihr_Name.focus();
			return false;
		}
        else {
			if (theForm.Ihr_Anliegen.value == "") {
				alert("Bitte teilen Sie uns Ihr Anliegen mit.");
				theForm.Ihr_Anliegen.focus();
				return false;
			}
		}
		return (true);
	}
}
