function popup(link, breite, hoehe) {
	parameter = "width="+breite+",height="+hoehe+",status=no,resizable=no,scrollbars=yes";
	F1 = window.open(link,"Fenster1", parameter);
	F1.moveTo(10,10);
	F1.focus();
}

function validate_text(str, opt){
    if(!opt && str == '') return true;
    if(str != '') return true;
    return false;
}

function validate_zahl(zahl, opt){
    zahl = zahl * 1;
    if(!opt && !zahl) return true;
    if(zahl) return true;
    return false;
}