function NewImgWindow(URL,winName) {
  var features;
  features = "scrollbars=no,width=500,height=550,top=100,left=200";
  win=window.open(URL,winName,features);
}
function NewWindowPrint(URL,winName) {
  var features;
  features = "scrollbars=yes,width=550,height=550,top=100,left=200";
  win=window.open(URL,winName,features);
}

function NewLeiterPrintWindow(URL,winName) {
  var features;
  features = "scrollbars=yes,width=950,height=700,top=100,left=200";
  win=window.open(URL,winName,features);
}

function NewPDFWindow(URL,winName) {
  var features;
  features = "scrollbars=yes";
  win=window.open(URL,winName,features);
}

function NewLeiterWindow(URL,winName) {
  var features;
  features = "scrollbars=yes,width=600,height=650,top=100,left=200";
  win=window.open(URL,winName,features);
  win.focus(); 
}