// JavaScript Document
window.onload = displayEmail;

function displayEmail() {
	var emailDisplay = document.getElementById("email-display");
	
	var myEmail = "john" + "@" + "creanium.net";
	
	var theHtml = '<a href="mailto:' + myEmail + '">';
	theHtml += myEmail;
	theHtml += "</a>";
	
	emailDisplay.innerHTML = theHtml;
}