function GoTo(WSeite) {
    var x=460;
    var y=450;
    var WOption ='';
    if(document.layers) WOption+='innerWidth='+x+',innerHeight='+y;
    else WOption+='width='+x+',height='+y;                    // Optionen ohne Leerzeichen schreiben wegen NC4.7
         WOption+=',top=10,left=10,directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0';
      WCard = window.open(WSeite, 'Anzeigefenster',WOption);
      WCard.focus();
}

function GoToDemand() {
    var x=700;
    var y=720;
    var WOption ='';
    if(document.layers) WOption+='innerWidth='+x+',innerHeight='+y;
    else WOption+='width='+x+',height='+y;                    // Optionen ohne Leerzeichen schreiben wegen NC4.7
         WOption+=',top=10,left=10,directories=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0';
      WCard = window.open('http://www.wbg-stadtfeld.de/demand/start.htm', 'DemandWin',WOption);
      WCard.focus();
}