function tooltip(billede,navn)
  {
  var tooltip = open('', '', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,top=100,left=155,width=500, height=333');
      tooltip_window = tooltip;
      tooltip.document.open();
      tooltip.document.writeln('<html><head><title>'+navn+'</title><link rel="stylesheet" href="style.css"></head><body bgcolor="#FFFFFF" topmargin="0" leftmargin="0" onblur=self.close();><div align="center"><center>');
      tooltip.document.writeln('<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0"><tr><td width="100%" height="100%" align="center" valign="middle">');
      tooltip.document.writeln('<p align="center"><IMG border=0  src="'+billede+'"  ></td></tr></table>');
      tooltip.document.writeln('</center></div></body></html>');
      tooltip.document.close();
  }
  
  function tooltipP(billede,navn)
  {
  var tooltip = open('', '', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,top=100,left=155,width=333, height=500');
      tooltip_window = tooltip;
      tooltip.document.open();
      tooltip.document.writeln('<html><head><title>'+navn+'</title><link rel="stylesheet" href="style.css"></head><body bgcolor="#FFFFFF" topmargin="0" leftmargin="0" onblur=self.close();><div align="center"><center>');
      tooltip.document.writeln('<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0"><tr><td width="100%" height="100%" align="center" valign="middle">');
      tooltip.document.writeln('<p align="center"><IMG border=0  src="'+billede+'"  ></td></tr></table>');
      tooltip.document.writeln('</center></div></body></html>');
      tooltip.document.close();
  }





