// JavaScript Document

function showPopUp(datei,vert,horiz){
  new_window = window.open("_lib/_popups/index.php?file="+datei+"","Fenster","dependent=yes,hotkeys=yes,location=no,menubar=no,scrollbars=1,status=no,toolbar=no,width="+vert+",height="+horiz+",screenX=100,screenY=100");
  new_window.focus();
}

