var fDesc=new Array(); fDesc[0] = "Reduce spam and junk email by using JavaScript to hide your address from spam-bots. Your web site might be contributing in how much junk mail you receive, especially if you include an email address on your pages.

Spam-lists are generated by Spam-Crawlers and Spam-Bots. These computers only purpose is to constantly comb the web in search of email addresses to add to their lists.

Thankfully they are in such a rush to keep up with the massive amount of web content that they ignore everything but the plain text of each site."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }