function zimmerfotos(vars) 
    { 
    var object="http://handwerkerwohnen-frankfurt.de/album.php?"+vars; 
    window.open(object,"PopUp","width=10,height=10,location=0,status=no,scrollbars=no,resizable=no");   
    }



function map(url, breite, hoehe) {
// Errechnet Koordinaten, um das Popup zentriert zu platzieren
links = (screen.width/2)-(breite/2);
oben = (screen.height/2)-(hoehe/2);
window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = yes,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
} 
