<!-- various javascript functions placed in <head></head>
   function pop(width,height,href) {
      var settings = "width="+width+",height="+height+
         ",scrollbars=yes,toolbar=no,resizable";
      window.open(href,"pop",settings);
   }
   function details(ID) {
      var settings = "width=600,height=450,scrollbars=yes,"
	 + "toolbar=no,resizable";
      var href = wwwroot + "/catalog/?mode=Pdetails&ID=" + ID;
      window.open(href,"details"+ID,settings);
   }
   function imgdetails(ID) {
      var settings = "width=600,height=450,scrollbars=yes,"
	 + "toolbar=no,resizable";
      var href = wwwroot + "/catalog/?mode=Pimgdetails&ID=" + ID;
      window.open(href,"imgdetails",settings);
   }
   function sysdetails(S) {
      var settings = "width=600,height=450,scrollbars=yes,"
	 + "toolbar=no,resizable";
      var href = wwwroot + "/catalog/?mode=Psysdetails&S=" + S;
      window.open(href,"sysdetails",settings);
   }
   function invsysdetails(tag) {
      var settings = "width=600,height=450,scrollbars=yes,"
	 + "toolbar=no,resizable";
      var href = wwwroot + "/account/?mode=Psysdetails&tag=" + tag;
      window.open(href,"sysdetails",settings);
   }
   function askdelete(type,name) {
      var question = "Are you SURE you want to completely delete " +
	 type + " " + name + "?";
      if (confirm(question)) {
	 return true;
      } else {
	 return false;
      }
   }
   function help() {
      var settings = "width=400,height=300,scrollbars=yes,"
	 + "toolbar=no,resizable";
      var href = wwwroot + "/help/?mode=pop&path="
	 + window.location.pathname + "&q=" + window.location.search;
      helpwin = window.open(href,"help",settings);
      helpwin.focus();
   }
   function Certify(URL) {
      popupWin = window.open(URL, 'Participant',
         'location,scrollbars,width=450,height=300')
      window.top.name = 'opener';
   }
// -->
