function mail(contact, email, host, host2) {
  document.write("<a href=" + "mail" + "to:" + email + "@" + host+ "." + host2 + ">" + contact + "</a>");
}

/*
<script language = "javascript" src = "http://sc.redcetera.com/jsc2/eobf.js">
</script>


<script language = "javascript">
mail("DISPLAY", "EMAIL 1", "DOMAIN", "EXTENSION");
</script>
*/
function mail2(email, host, host2) {
	contact = email + "@" + host +"." +host2;
	document.write("<a href=" + "mail" + "to:" + contact + ">" + contact + "</a>");
}

/*
<script language = "javascript" src = "http://sc.redcetera.com/jsc2/eobf.js">
</script>


<script language = "javascript">
mail2( "EMAIL 1", "DOMAIN", "EXTENSION");
</script>
*/