// JavaScript Document
function popup(theURL,winName,width,height) {
  var features = 'scrollbars=0,top=0,left=0,width=' + width.toString() + ',height=' + height.toString();
  theURL = '../img/Leitung/'+theURL;
  window.open(theURL,winName,features);
}
