
function PopItUp(headtext,hivar,outputtext)
{
  popup = window.open("","popDialog","height="+hivar+",width=420,scrollbars=auto");
  popup.document.writeln("<HTML><HEAD><TITLE>"+headtext+"</TITLE></HEAD>");
  popup.document.writeln("<BODY BGCOLOR='#FFFFFF'><P><STRONG>"+headtext+": </STRONG>");
  popup.document.writeln(outputtext+"</P>");
  popup.document.writeln("<FORM><INPUT TYPE='BUTTON' VALUE='Close' onClick='self.close()'>"+
     "</FORM></BODY></HTML>");
  popup.document.close();
}

function PopUpNematodes()
{
  var NemaText='Eelworms, class of the Aschelminthes '+ 
    '(Nemathelminthes), to which, besides free-living forms, belong a number of harmful parasites '+ 
    'of plants, animals and humans.</P><TABLE BORDER=0 WIDTH=\'100%\'><TR> '+
    '<TD WIDTH=\'50%\'><IMG SRC=\'nemp/nemat-q.gif\' WIDTH=192 HEIGHT=171 ALT=\'Nematode, cross-section\'></TD>'+
    '<TD WIDTH=\'50%\'><IMG SRC=\'nemp/nemat-l.gif\' WIDTH=200 HEIGHT=171 ALT=\'Nematode, longitudinal section\'></TD></TR><TR>'+
    '<TD>Cross-section of a nematode (schematic). After Remane, changed.<BR>&nbsp;</TD>'+
    '<TD>Longitudinal section of a nematode with mouth prick (schematic). After Decker, '+
    'changed.</TD></TR></TABLE>';
  PopItUp('Nematodes',400,NemaText);
}

function PopUpAnamorph()
{
  var AnamText='The non-sexual reproduction stage of a fungus. '+ 
    'There are many fungi from which we do not know any sexual reproduction. '+ 
    'These fungi are classified in a meta system established by SACCARDO in 1886 with so-called morphotaxa '+
    '(form species, form genus etc.), which is not part of the natural system of species. '+
    'Fungi of which we do not know sexual reproduction are called imperfect fungi (Fungi imperfecti) or Deuteromycetes. '+
    'The teleomorph, which is the sexual stage of a fungus, has often been discovered as another stage of the same species '+
    '(which is all together called holomorph) years after the first description of a fungus as deuteromycete. '+
    'This has also been the case concerning the genus Nematoctonus (belonging to the Basidiomycetes) and '+
    'Arthrobotrys superba (belonging to the Ascomycetes). Most Deuteromycetes seem to be asexual Ascomycetes, '+
    'some are obviously Basidiomycetes, which can be seen by the clamp connections of the hyphae.';
  PopItUp('Anamorph',420,AnamText);
}


