     function noSpam (dom,ain,log) {
      document.write('<a href="mailto:'+log+'@'+dom+ain+'">'+log+'@'+dom+ain+'</a>');
     }
     function o (id) {
      if (document.getElementById) {
        obj=document.getElementById(id);
      } else if (document.layers) {
        obj=document.layers[id];
      } else if (document.all) {
        obj=document.all[id];
      } else {
        obj=false;
      }

      return obj;
     }
     function o_style (name) {
      if (document.getElementById) {
       obj=document.getElementById(name).style;
      } else if (document.layers) {
       obj=document.layers[name];
      } else if (document.all) {
       obj=document.all[name].style;
      } else {
       obj=false;
      }

      return obj;
     }     
     function switchText (hide,show) {
      o_style(hide).display = 'none';
      o_style(show).display = 'block';
     }
     function N () {
      return true;
     }
     function b(myrow,bg) {
      myrow.style.backgroundColor = bg;
     }     
     
     function selectAll (set,status) {
      var f = o(set);
      var cnt = f.length;

      for (var i=0;i<cnt;i++) {
       f.options[i].selected = status;
      }
     }

     function selectPrevious (set) {
      var f = o(set);
      var cnt = f.length;

      for (var i=0;i<cnt;i++) {
       f.options[i].selected = (f.options[i].className == 'act');
      }
     }     
