var win = null;

function popdown() {
  if (win && !win.closed) win.close();
}

function ShowPerson(pic,desc,x,y)
{ 
attr = "scrollbars=no, width=" + x + ",height=" + y;
popdown();
win = window.open("", "" , attr);
win.document.write("<html><head><title>",desc,"</title></head>");
win.document.write("<META HTTP-EQUIV='imagetoolbar' CONTENT='no'>");
win.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
win.document.write("<img src='",pic,"' width='",x,"' height='",y,"'>");
win.document.write("</body></html>");
win.document.close();

if (win) return false;
  else return true;
}

function ShowPDF(formtext)
{ 
attr = "scrollbars=yes, width=500, height=800, resizable=yes";
win = window.open(formtext,"PDFDatei",attr);

if (win) return false;
  else return true;
}

function ShowURL(formtext)
{ 
attr = "scrollbars=yes, width=800, height=600, menubar=yes, resizable=yes, titlebar=yes, toolbar=yes, location=yes";
win = window.open(formtext,"URL",attr);

if (win) return false;
  else return true;
}

window.onunload = popdown;
window.onfocus = popdown;