// 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/
//
// modified by Stan Vierhaus  2007-05-09 to fill in the passed element id
//
function unmunge(id) { 

    var coded = "FRtp@phei2.wRZ";
    var key = "q0FJr6y47I1fcDLUxMCnAH5KvGwoblPgBisVYa28ORtQkT3mpzjeXSdEhuNW9Z";

    var shift=coded.length;
    var ltr,link="";
    for (var 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));
    }
  }
  try {
      document.getElementById(id).innerHTML = '<a href="mailto:'+link+'">'+link+'</a>';
	}
	catch(e) {}
}


