function jumper() {
  var indx = document.quickjump.toggle.selectedIndex;
  var url  = document.quickjump.toggle.options[indx].value;
  if(url != "-")
    { location.href = url; }
  else
    { document.quickjump.toggle.selectedIndex = 0; }
}


function act(imgName,d) {
 if(document.images)
   document[imgName].src = eval(imgName + 'on.src');
 if(!d)
   { d=''; }
   window.status=d;
   }
   
function inact(imgName) {
 if (document.images)
   document[imgName].src = eval(imgName + 'off.src');
   window.status=' ';
   }
      
function statmsg(msgStr) {
window.status = msgStr;
}

function unstat() {
window.status = ' ';
}

function resubmit(jack)
  { jack.submit(); }

