
// Allgemeines PopUp
function popup(page,x,y,s) {
  if (!s) { s = "1" }
  titel = x +""+ y;
  PopWindow=window.open(page,titel,"scrollbars="+s+",resizable=no,width="+x+",height="+y);
  PopWindow.focus();
}

