/*
Kompetenzzentrum Molekulare Medizin, (c) 2006
*/

function Blur(imgname, supmname){
  // hide dotted lines around active links in netscape
  myLength = document.links.length;
  for (myEnumerator=0; myEnumerator<myLength; myEnumerator++)
    document.links[myEnumerator].blur()
}
function OpenPicWin(ArgName, ArgOWidth, ArgOHeight, ArgWidth) {
  // ArgOWidth = ArgWidth + 20
  // ArgOHeight = Picture Height + 20
  HelpStr = "width=" + ArgOWidth + ",height=" + ArgOHeight + ",status=yes,toolbar=no,menubar=no,scrollbar=yes,left=10,top=10"
  myWin= open("", "displayWindow", HelpStr);
  // open document for further output
  myWin.document.open();
  // create document
  //~ alert(ArgName);
  //~ alert(ArgWidth);
  myWin.document.write("<html><head><title>Kompetenzzentrum Molekulare Medizin");
  myWin.document.write("</title></head><body>");
  myWin.document.write("<p><img src='_pic/" + ArgName + "' width='" + ArgWidth + "'></p>");
  myWin.document.write("</body></html>");
  // close the document - (not the window!)
  myWin.document.close();
}

