
function copyrightNotice(hdoc)
   {
   //var NS=hdoc.layers?1:0;

   var NS=navigator.appName.search(/netscape/i)!=-1?1:0;
   var year= new Date().getYear();

   //alert("NS="+NS+":"+navigator.appName.search(/netscape/i)) 
   // +":"+hdoc.layers);
   hdoc.write("<a href=\"http://www.mindspring.com/~notionsunlimited/jon.html\" class=\"copyright\" target=\"_main\">&#169 1996-"
             +(NS?year+1900:year)+" notionsUnlimited</a>");
   }

function showPicture(imgSrc)
  {
  document.open("text/html");
  document.writeln("<html><head><title>Pretty Picture</title>");
  document.writeln("<link rel='stylesheet' href='../notionsunlimited.css'>");
  document.writeln("</head>");
  document.writeln("<body background='../chalk-bg.jpg'>");
  document.writeln("<table border='0' height='100%' width='100%'>");
  document.writeln("<tr><td align='center' valign='middle'>");
  document.writeln("<img src='" + imgSrc + "'>");
  document.writeln("<br><a href='javascript:history.go(-1);' class='bare'>back</a>");
  document.writeln("</td></tr></table>></body></html>");
  document.close();
  }