<!--

var popup_win=null;


function foto(name,titel,weite,hoehe,scrolli){
CheckOpen();
if(scrolli==0) {
 popup_win=window.open(name, titel, "resizable=no,scrollbars=no,menubar=no,toolbar=no,width="+weite+",height="+hoehe+",top=30,left=30");
}
else {
 popup_win=window.open(name, titel, "resizable=no,scrollbars=yes,menubar=no,toolbar=no,width="+weite+",height="+hoehe+",top=30,left=30");
}
popup_win.window.focus();
}

function CheckOpen() {
 if(popup_win && popup_win.closed != true) popup_win.window.close();
}

//-->