// Print last modification date and copy-right information
function print_mofidy_copyright () {
  document.write("<font size=2>");
  document.write("Last modified on " + document.lastModified + "<br>");
  document.write("&copy 2002 Monica Chawathe. All rights reserved.<br>");
  document.write("</font>");
}

// Print copy-right information
function print_copyright () {
  document.write("<br><hr>");
  document.write("&copy 2001 Monica Chawathe. All rights reserved.");
}

// Open images in new window or just raise already opened window
function RaiseWindow(newlink)
 {
   newwin = window.open(newlink, 'photo_win', 
                        "width=100, height=100, scrollbars, resizable=yes");
   newwin.focus()
 }
