// ---- Bosson Designs male2 addrss hider -----------------
//			ref: http://www.professorscodingcorner.com/snippets/stopspambots.shtml
//			using DOM scripting instead of innerHTML or document.write
//			missing bit not in this file!!

	//-- for mouse events set up, see anon_init.js ---


function addAddress()
//		insert an <a> with male2 addrss into an "empty" <span id="addaddress"></span>
{ 
if (!document.getElementById("addaddress")) return false; 
var spanobj = document.getElementById("addaddress"); 
var anch = document.createElement("a"); 
var dom = "bossondesigns";
var whoseit = "joellen";
var subj = "?subject=->%20";
var mssgbody = "&body=\r\r(Please%20add%20your%20name%20to%20the%20\"SUBJECT\"%20line%20of%20this%20email,%20replace%20these%20instructions%20with%20your%20message,%20and%20provide%20as%20much%20contact%20information%20as%20you%20can!%20-%20Thanks)";
var sum = whoseit+secondbit+dom+anotherbit;
var sumplus = whoseit+secondbit+dom+anotherbit+subj+mssgbody;
//var address = "recipient@website.com"; 
anch.setAttribute("href",male2+sumplus); 
spanobj.appendChild(anch); 
var txt = document.createTextNode(sum); 
anch.appendChild(txt); 
return true; 
}

function changePseudolink() {
	document.getElementById('addresstrigger').style.display = "none";
	addAddress();
	}

