function PopNews(datei,breit,hoch) {
		datei="../news/news.php";
        breit=370;
        hoch=485;
        
        Attrib='height='+hoch+',width='+breit+',scrollbars=no';
        FensterName="news";
        
        Fenster=window.open(datei,FensterName,Attrib);
        x=screen.availWidth/2-(breit/2);
        y=screen.availHeight/2-(hoch/2);
        Fenster.focus();
        Fenster.moveTo(x,y);
        };

function PopPlan(datei,breit,hoch) {
		datei="../plan/plan.htm";
        breit=520;
        hoch=587;
        
        Attrib='height='+hoch+',width='+breit+',scrollbars=no';
        FensterName="plan";
        
        Fenster=window.open(datei,FensterName,Attrib);
        x=screen.availWidth/2-(breit/2);
        y=screen.availHeight/2-(hoch/2);
        Fenster.focus();
        Fenster.moveTo(x,y);
        };