// Hide Email Function
/* Variables and explanations for this function 
The actual function is called email but we add
the name of who we're emailing at the end to 
make it easier to understand.
So emailwebmaster for example will go to bob dot sherbondy at Yahoo dot com 
The only items you need to change are:
 1. The name of the function
 2. b='bob.sherbondy'  this is the portion before the @ symbol
 3. f='webmaster' or 'disciple' this is what the link will look like
 4. b+='yahoo.com'     this is the portion after the @ symbol
Don't worry about anything else. 
*/

// This one is for the link in the footer

// Email to Webmaster Bob

function emailbob(){
 var a,b,c,d,e,f,g,h,i
 a='<a href=\"mai'
 b='bob.sherbondy'
 c='\">'
 a+='lto:'
 b+='@'
 e='<\/a>'
 f='Webmaster'
 b+='yahoo.com'
 g='<img src=\"'
 h=''
 i='\" alt="Email us." border="0">'

 if (f) d=f
 else if (h) d=g+h+i
 else d=b

 document.write(a+b+c+d+e)
}

// End of footer email links

// This next one is for contacting "disciple Bob" citations

// Email to Disciple Bob

function emaildisciplebob(){
 var a,b,c,d,e,f,g,h,i
 a='<a href=\"mai'
 b='bob.sherbondy'
 c='\">'
 a+='lto:'
 b+='@'
 e='<\/a>'
 f='Disciple Bob'
 b+='yahoo.com'
 g='<img src=\"'
 h=''
 i='\" alt="Email us." border="0">'

 if (f) d=f
 else if (h) d=g+h+i
 else d=b

 document.write(a+b+c+d+e)
}