<!--
var PopWin;
function fenster(LOCA,NAME,BREI,HOCH,LINX,OBEN,RESI,SCRO,STAT,TOOL,MENU) {
if (BREI == 'max') BREI = screen.availWidth;
if (HOCH == 'max') HOCH = screen.availHeight;
if (LINX == 'mit') LINX = Math.round((screen.availWidth/2)-(BREI/2));
if (OBEN == 'mit') OBEN = Math.round((screen.availHeight/2)-(HOCH/2));
FEAT = "width="+BREI+",height="+HOCH+",left="+LINX+",top="+OBEN+",resizable="+RESI+",scrollbars="+SCRO+",status="+STAT+",toolbar="+TOOL+",menubar="+MENU;
PopWin = window.open (LOCA,NAME,FEAT);
if (BREI > 300 || HOCH > 300) PopWin.resizeTo(BREI,HOCH);
void(PopWin.outerWidth=BREI);
void(PopWin.outerHeight=HOCH);
setTimeout("PopWin.focus();",111);
}

function pop(DATEI) {
fenster('pop/?txt='+DATEI,'info',630,480,'mit','mit',1,1,0,0,1);
}

function tip(DATEI) {
fenster('pop/?tip='+DATEI,'tipp',630,480,'mit','mit',1,1,0,0,0);
}

function kontakt(DATEI) {
fenster(DATEI,'kontakt',630,'max','mit','mit',1,1,0,0,1);
}

function umzugsangebot() {
fenster('/_X_/listenautomat.php','listig',Math.round(screen.availHeight*4/3),'max','mit',0,1,0,0,0,0);
}
//-->

