/* This JavaScript (Email Spider Stumper) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting
-------------------------------------------------------------------
Modified by Webmaster Kevin (kduhe@kzla.com) to handle multiple
addresses on the same page. 8/9/2005 

Modified by Ric Raftis (info@bushsong.com) to include variable Subject 6/11/05 */

function blocker(name) 
{
var domain ="bushverse.com";
	document.write('<a href="mailto:' + name + '@' + domain + '">' + name + '@' + domain + '</a>');
}

function blockervardomain(name,domain) 
{
	document.write('<a href="mailto:' + name + '@' + domain + '">' + name + '@' + domain + '</a>');
}

// This script adds a subject field to the email.

function blockersubject(name,subject)
{
    var domain ="bushverse.com";
    document.write('<a href="mailto:' + name + '@' + domain + '?subject=' + subject + '">' + name + '@' + domain + '</a>');
}

//--------------------------------------------------------------------------------------------------
// This script validates pages for WAI AAA at www.contentquality.com 

function cynthia(url){
window.open('http://www.contentquality.com/mynewtester/cynthia.exe?rptmode=2&url1='+url+'');
}

//---------------------------------------------------------------------------------------------------
// This script removes dots around activated links on pages, particularly menus -*/

function stopDots() {
   var dotty=document.getElementsByTagName('a');
for(i=0;i<dotty.length;i++) {
   dotty[i].onfocus=function() {
   this.blur();
  }
 }
}

// Add function to body tag for onload.

//-----------------------------------------------------------------------------------------------------

