<!--

function ShowPic(title, pic, height, width)
{
  thewindow = window.open ('', 'newwin', 'height='+height+', width='+width+', toolbar=no, scrollbars=no, menubar=no')
  thewindow.document.write("<html>")
  thewindow.document.write("<head>")
  thewindow.document.write("<title>"+title+"</title>")
  thewindow.document.write("</head>")
  thewindow.document.write("<body marginheight=0 marginwidth=0 topmargin=0 leftmargin=0 rightmargin=0>")
  thewindow.document.write("<img src='images/"+pic+"' width="+width+" height="+height+" border=0 alt>")
  thewindow.document.write("</body>")
  thewindow.document.write("</html>")
  thewindow.document.close()
  self.name = "main"
}

function ShowPedigree(whichone, howHigh, howWide)
{
  window.open ('pedigrees/'+whichone+'', '', 'height=' + howHigh + ', width=' + howWide + ', toolbar=no, scrollbars=no, menubar=no, noresize')
}
//-->
