function AlbumPopupWindow (dirname, photoname, inwidth, inheight)
{ secondpart = "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=" + (inwidth+20) + ",height=" + (inheight+25);
  albumwin = window.open("", "Photo", secondpart);
  albumwin.document.open("text/html","replace");
  albumwin.document.writeln ('<html><head><title>Feldstein Family Tree - Photo Album</title></head>');
  albumwin.document.writeln ('<body bgcolor="white">');
  albumwin.document.writeln ('<a href="javascript:window.close()"><img src="album/' + dirname + '/' + photoname + '" border="0"></a>');
  albumwin.document.writeln ('</body></html>');
  albumwin.document.close();
  albumwin.focus();
}


function AlbumPopupWindowText (dirname, photoname, inwidth, inheight, thetext)
{ secondpart = "toolbar=0,location=0,status=0,menubar=0,scrollbars=1,width=" + (inwidth+35) + ",height=" + (inheight+55);
  albumwin = window.open("", "Photo", secondpart);
  albumwin.document.open("text/html","replace");
  albumwin.document.writeln ('<html><head><title>Feldstein Family Tree - Photo Album</title></head>');
  albumwin.document.writeln ('<body bgcolor="white">');
  albumwin.document.writeln ('<p>' + thetext + '</p>');
  albumwin.document.writeln ('<a href="javascript:window.close()"><img src="album/' + dirname + '/' + photoname + '" border="0"></a>');
  albumwin.document.writeln ('</body></html>');
  albumwin.document.close();
  albumwin.focus();
}


function GBForestFooter (lastModDate)
{
   document.writeln('<hr>');
   document.writeln('<div align="center">');
   document.writeln('[ <a href="index.shtml">Home</a> | <a href="nameindex.shtml">Name Index</a> | <a href="org.shtml">Organization</a> | <a href="missing.shtml">Missing</a> | <a href="photos.shtml">Photos</a> | <a href="pets.shtml">Pets</a> | <a href="thanks.shtml">Thanks</a> | <a href="happy.shtml">10 Ways</a> | <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#98;&#97;&#110;&#97;&#105;&#64;&#102;&#101;&#108;&#100;&#115;&#116;&#101;&#105;&#110;&#46;&#105;&#110;&#102;&#111;?subject=Family Tree">Email</a> | <a href="http://feldstein.info/">Genealogy Research</a> ]');
   document.writeln('</div>');
   document.writeln('<hr>');
   document.writeln('<address>');
   document.writeln('&#169; Copyright 1999-2007 Banai Lynn Feldstein<br>');
   document.write('Last updated: ');
   document.writeln(lastModDate);
   document.writeln('<br>');
   document.writeln('Designed by Banai at ');
   document.writeln('<a href="http://greatbird.com/websites/">Great Bird Enterprises</a><br>');
   document.writeln('</address><br>');
}


function PhotoPopupWindow (dirname, photoname, inwidth, inheight)
{ secondpart = "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,width=" + (inwidth+20) + ",height=" + (inheight+25);
  albumwin = window.open("", "Photo", secondpart);
  albumwin.document.open("text/html","replace");
  albumwin.document.writeln ('<html><head><title>Feldstein Family Tree - Photo Album</title></head>');
  albumwin.document.writeln ('<body bgcolor="white">');
  albumwin.document.writeln ('<a href="javascript:window.close()"><img src="pix/' + dirname + '/' + photoname + '" border="0"></a>');
  albumwin.document.writeln ('</body></html>');
  albumwin.document.close();
  albumwin.focus();
}
