function pop(file)
{
popupwindow = window.open(file,"druckseite","width=810,height=700,toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no");
popupwindow.focus();
return false;
}

function popKontakt(file)
{
popupwindow = window.open(file,"Kontakt","width=400, height=500,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=no");
popupwindow.focus();
return false;
}

function popGB(file)
{
popupwindow = window.open(file,"Kontakt","width=100, height=100,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=no");
popupwindow.focus();
return false;
}

function popOnload(file)
{
popupwindow = window.open(file,"Sommerkonzert","width=500 height=849,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=no");
popupwindow.focus();
return false;
}

function PopUp(w,h,file) {
  h = h - 20; var x=0, y=0, parameter="";
  if (w < screen.availWidth || h < screen.availHeight) {
    x = (screen.availWidth - w - 12) / 2;
    y = (screen.availHeight - h - 104) / 2;
    if (window.opera) y = 0; // Opera positioniert unter den Symbolleisten
    if (x<0 || y<0) { x=0; y=0; }
    else parameter = "width=" + w + ",height=" + h + ",";
  }
  parameter += "left=" + x + ",top=" + y;
  parameter += ",menubar=no,location=no,toolbar=no,status=no";
  parameter += ",resizable=no,scrollbars=no";
  var Fenster = window.open(file,"PopUp",parameter);
  if (Fenster) Fenster.focus();
  return !Fenster;
}
