  <!--
	function popupnew(mylink, windowname, hwidth, vheight)
		{
			//window.alert(mylink);
			if (! window.focus)return true;
			var href;
				if (typeof(mylink) == 'string')
					href='cgi-bin/circ.pl?' + mylink + "&picw=" + hwidth + "&pich=" + vheight + "&";
				else
					href='cgi-bin/circ.pl?' + mylink.href + "&picw=" + hwidth + "&pich=" + vheight + "&";
				window.open(href, windowname, 'width=' + (hwidth + 100) + ',height=' + (vheight + 200) + ',left=5,top=5,Dependent=yes,resizable=yes,scrollbars=auto');
				return false;
		}
	function popuppage(mylink, windowname, hwidth, vheight)
		{
			window.alert(mylink);
			if (! window.focus)return true;
			var href;
				if (typeof(mylink) == 'string')
					href='cgi-bin/PopUp.pl?' + mylink + "&picw=" + hwidth + "&pich=" + vheight + "&";
				else
					href='cgi-bin/PopUp.pl?' + mylink.href + "&picw=" + hwidth + "&pich=" + vheight + "&";
				window.open(href, windowname, 'width=' + (hwidth + 100) + ',height=' + (vheight + 200) + ',left=5,top=5,Dependent=yes,resizable=yes,scrollbars=auto');
				return false;
		}
    function popup(mylink, windowname, hwidth, vheight)
      {
		  if (! window.focus)return true;
		  var href;
		  if (typeof(mylink) == 'string')
			 href=mylink;
		  else
			 href=mylink.href;
		  window.open(href, windowname, 'width=' + hwidth + ',height=' + vheight + ',left=10,top=10,Dependent=yes,resizable=yes,scrollbars=auto');
		  return false;
      }
	function hidelayer()
		{
			if (IE4)
				eval("sticky.style.visibility='hidden'")
			else if (NS6)
				document.getElementById("sticky").style.visibility='hidden'
			else if (NS4)
				eval("document.sticky.visibility='hide'")
		}
// -->
