var sfenster = null;
var bfenster = null;
var zfenster = null;
// andere funktionen
function anordnen(){
 if(sfenster != null && typeof sfenster.close != 'undefined') sfenster.close()
 if(bfenster != null && typeof bfenster.close != 'undefined') bfenster.close()
  copydiv.LineUp("tr");
  copydiv.Show();
}
// bild-popup
function imagepop(bildname){
 popclose()
 addi = bildname+".html";
 sfenster = window.open(addi,"grossansicht","height=370,width=400,location=no,menubar=no,scrollbars=no,titlebar=no,toolbar=no");
 sfenster.focus()
}
// bild-popup mit text
function bigimage(bildname){
 popclose()
 addi = bildname+".html";
 bfenster = window.open(addi,"bildansicht2","height=450,width=400,location=no,menubar=no,scrollbars=no,titlebar=no,toolbar=no");
 bfenster.focus()
}
// bild-popup mit text
function zertipop(bildname){
 popclose()
 addi = bildname+".html";
 zfenster = window.open(addi,"bildansicht3","height=580,width=349,location=no,menubar=no,scrollbars=no,titlebar=no,toolbar=no");
 zfenster.focus()
}
function popclose(){
 if(zfenster != null && typeof zfenster.close != 'undefined') zfenster.close()
 if(sfenster != null && typeof sfenster.close != 'undefined') sfenster.close()
 if(bfenster != null && typeof bfenster.close != 'undefined') bfenster.close()
}
function locator(uri){
 window.location.href=uri;
}

