// Scramble email address. Actually, all it does is to break up 
// the html into not easily recognizable strings. HTML number codes
// - in hex - are substituted for the display special characters.
//
// Cliff Meekins - Sept. 05,2005  chgd rgheer 11/23/2008


function scramble(){
var p1,p2,p3,p4,p5,p6
p1='<a href="mai'
p2='rgheer'
p3='">'
p1+='lto:'
p2+='&#x40;'
p5='</a>'
p6='RGHeer'
p2+='verizon&#x2E;net'
p4=p6

document.write(p1+p2+p3+p4+p5)
}

scramble()

// end scramble script
