function JumpPage (form) {
  var npage=form.myarea.value;
  var tpage="oats";
  if (npage < 100 ){
    tpage=tpage+"0";
  }
  if (npage < 10 ){
    tpage=tpage+"0";
  }
  if (npage < 1 ){
    alert ("There is no page that fits this criteria");
  } else if (npage > 210 ){
    alert ("There is no page that fits this criteria");
  } else {
    tpage=tpage+npage+".html";
    window.location = tpage;
  }
}

function JumpTo (newpage) {
  window.location = newpage;
}

function EnlargeImg(picture){
  var win = window.open("", "win", "width=640,height=480,resizable=1,scrollbars=1");
  var doc = win.document;
  doc.open("text/html", "replace");
  doc.write("<HTML><HEAD><TITLE>"+picture+"</TITLE></HEAD><BODY><img src='images/"+picture+"'></BODY></HTML>");
  doc.close();
}
