	  function spamBlock(u,d,t) {
	    /*
		Usage:
		  <a href="javascript:void(0);" onMouseOver="javascript:return window.status='Contact Us';" onMouseOut="javascript:return window.status='';" onClick="spamBlock('user','domain','toplevel')">Contact Us</a>
		
		Var descriptions:
		   email address format:
		      username @ domain .com
		      |   u   |  |  d  | | t|
		   u = username - i.e.: customerservice
		   d = domain name without the .com, .net, etc extension - i.e. consolidated
		   t = toplevel domain without the leading period (.) - i.e. com, net. etc
		*/
	    if (u == "") {
		  u = "service";
		}
	    if (d == "") {
		  d = "consolidatedelectric";
		}
	    if (t == "") {
		  t = "coop";
		}
		
	    m = 'm' + 'a' + 'i' + 'l' + 't' + 'o' + ':';
		
		s = m + u + '@' + d + '.' + t;
	    
		document.location.href = s;
	  }