<!-- 
function js_showemaillinkv1(enco1, enco2, email1, email2, email3, email4){
	emailE = email1 + email2 + '<code class=\"link\">@</code>' + email3 + email4;
	document.write('<a href="mailto:' + enco1 + enco2 + '?subject=website contact">' + emailE + '</a>')
}

function js_togglevisibility(e) {	
	if (document.getElementById(e).style.display=="none"){
		document.getElementById(e).style.display="block";
		document.getElementById('urlbody').focus();/*purely to remove line from around button, focus must be an input form element to work*/
	}else{
		document.getElementById(e).style.display="none";
		document.getElementById('urlbody').focus();
	}
}
-->
