 
 /* -------------- these are the original scripts -------------- */
 /*
 function showLink () {
    var contact = "click here"
    var emailHost = "masterlink" + "." + "com"
    document.write("<a href=" + "mai" + "lto:mi" + "ke" + "@" + emailHost+ ">" + contact + "</a>" + ".")
 }
 function showIt () {
    var email = "news"
    var emailHost = "masterlink" + "." + "com"
    document.write("mik" + "e@" + emailHost)
 }
 */

 
 
/* ------------------

i combined the functionality of the two original scripts into this one which is copied below (once for each email address). simply copy one of the functions and modify the email address and function name. then drop in <script>showFUNCTION()</script> into the page where you want the link to show up (replacing "FUNCTION" with your new function name).

-------------- */

 
 function showstephen () {
    var emailHost = "square1churchplanting" + "." + "com"
	document.write("<a href=" + "mai" + "lto:ste" + "phen" + "@" + emailHost+ ">")
    document.write("ste" + "phen@" + emailHost)
	document.write("</a>")
 }
 
 function showjoe () {
    var emailHost = "square1churchplanting" + "." + "com"
	document.write("<a href=" + "mai" + "lto:jo" + "e" + "@" + emailHost+ ">")
    document.write("jo" + "e@" + emailHost)
	document.write("</a>")
 }
 
 
  /* ---  these are set to just show a generic link instead of the full address --- */
 function showstephenSidebar () {
    var contact = "email Stephen"
	var emailHost = "square1churchplanting" + "." + "com"
	document.write("<a href=" + "mai" + "lto:ste" + "phen" + "@" + emailHost+ ">" + contact + "</a>")
 }
 
 function showjoeSidebar () {
    var contact = "email Joe"
	var emailHost = "square1churchplanting" + "." + "com"
	document.write("<a href=" + "mai" + "lto:jo" + "e" + "@" + emailHost+ ">" + contact + "</a>")
 }
 
 
 
 /* ---  this one is set to just show the text without it being a link --- */
 function showinfo () {
    var emailHost = "square1churchplanting" + "." + "com"
	document.write("in" + "fo" + "@" + emailHost)
 }