//This code is owned and copyrighted by Gannett Fleming Inc. You CANNOT use this code without the express permission of Gannett Fleming.
function Decrypt(theText) {
var output = new String;
var Temp = new Array();
var TextSize = theText.length;
for (i = 0; i < TextSize; i++) {
Temp[i] = theText.charCodeAt(i);
}
for (i = 0; i < TextSize; i++) {
output += String.fromCharCode(Temp[i] - 4);
}
output = "mailto:" + output
window.navigate(output)
}