  
 /* cvs id: $Id: script.js,v 1.3 2004/12/27 02:29:01 andrews Exp $
  * =========================================================
  * Created By: Andrew Simmonds
  * Date:       23st December 2004
  */

  function resume(url) {
    stillThere = true;
    if ((window.opener == null) || (window.opener.closed)) stillThere = false;
    if (stillThere) {
      window.opener.focus();
      self.close();
    } else {
      window.location = url;
    }
  }

  function mouseOver(group) {
    var divTags = document.getElementsByTagName('span'); 

    for (i=0; i < divTags.length; i++) {

      if (divTags[i].id == 't_' + group) {

        divTags[i].style.display = 'block';
        divTags[i].className = 'visibleSubmenu';

      } else if (divTags[i].className == 'visibleSubmenu') {

        divTags[i].className = 'hiddenSubmenu';
        divTags[i].style.display = 'none';

      } 
    }
  }
  
