// 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.
// This version generates a "Subject" entry.
//
// Cliff Meekins - February 7, 2007 - updated Feb. 16, 2009


function scrambles(){
var p1,p2,p3,p4,p5,p6,p7

p1='<a href="mai'
p2='cmeekins'
p3='">'

p1+='lto:'
p2+='1518&#x40;'

p5='</a>'
p6='send an em'
p7=' ?su'

p2+='verizon&#x2E;net'

p6+='ail'
p7+='bject=** Dundalk Avenue performance request **'

p4=p6

document.write(p1+p2+p7+p3+p4+p5)
}

scrambles()

// end scrambles script





