<!--
// Email obfuscator script 2.1 by Tim Williams, University of Arizona
// Random encryption key feature by Andrew Moulden, Site Engineering Ltd
// This code is freeware provided these four comment lines remain intact
// A wizard to generate this code is at http://www.jottings.com/obfuscator/

// Functionalized and slightly modified by Kathie Schneider 2/07.  
// Use the above url to change the email address, though a copy/paste will break it.
// Follow instructions below (or email Kathie).
function parse_mail_link() { 
	// highlight and replace everything b/w here:
	coded = "ptKHNw@cAxAw5A3Ap.5Fx"
  key = "KQNZokcrDxwGzXH64glusMVJLFR5fY107Wja8IO3ApveT9ChqPmnESUitdyBb2"
  shift=coded.length
  link=""
  for (i=0; i<coded.length; i++) {
    if (key.indexOf(coded.charAt(i))==-1) {
      ltr = coded.charAt(i)
      link += (ltr)
    }
    else {     
      ltr = (key.indexOf(coded.charAt(i))-shift+key.length) % key.length
      link += (key.charAt(ltr))
    }
  }
  // and here.
 return link;
}
// -->
