// 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 - updated Feb. 16, 2009


function scramble(){
var p1,p2,p3,p4,p5,p6
p1='<a href="mai'
p2='cmeekins'
p3='">'
p1+='lto:'
p2+='1518&#x40;'
p5='</a>'
p6='Cliff Meekins'
p2+='verizon&#x2E;net'
p4=p6

document.write(p1+p2+p3+p4+p5)
}

scramble()

// end scramble script