 /* cvs id: $Id: script.js,v 1.1 2009/08/14 07:06:40 sean 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;
    }
  }

