	// The deprecated media type text/javascript is used for IE compatibility.
	var d = document;
	var domain = "headandhands.ca";
	function email(name) {
		// This removes the anchor element if it already exists.
		if (d.getElementById("email")) {
			d.getElementById("email").parentNode.removeChild(d.getElementById("email"));
		}
		var anchor = d.createElement("a");
		var image = d.createElement("img");
		var span = d.createElement("span");
		anchor.setAttribute("id", "email");
		anchor.setAttribute("href", "mailto:" + name + "@" + domain);
		// window.status code is omitted since Fx, IE7, Op, et al block it by default; window.status is also non-standard code.
		image.setAttribute("alt", ""); // This attribute is required for validity in HTML.
		image.setAttribute("width", "###"); // This decreases the perceived load time.
		image.setAttribute("height", "###"); // This decreases the perceived load time.
		image.setAttribute("src", "images/mail.jpg");
		// The border attribute is presentational and should be replaced with equivalent CSS.
		span.appendChild(d.createTextNode("courriel " + name));
		// The br element should not be used; a span element with the CSS display: block declaration applied is more appropriate.
		anchor.appendChild(image);
		anchor.appendChild(span);
		// Replace <elementReferenceHere> with the appropriate reference.
		document.getElementById("emailSection").appendChild(anchor);
	}
	email("info");




