<!-- // Start of AdSubtract JavaScript block; you can ignore this.
     // It is used when AdSubtract blocks cookies or pop-up windows.
document.iMokie = "cookie blocked by AdSubtract";
document.iMferrer = "referrer blocked by AdSubtract";
function iMwin() {
	this.location = "";
	this.frames = new Array(9);
	this.frames[0] = this;
	this.frames[1] = this;
	this.frames[2] = this;
	this.frames[3] = this;
	this.frames[4] = this;
	this.frames[5] = this;
	this.frames[6] = this;
	this.frames[7] = this;
	this.frames[8] = this;
	this.length = 0;
}
// End of AdSubtract JavaScript block. -->
//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)
}
