function $(elemID) {
	// Refactor document.getElementById alias.
	return document.getElementById(elemID);
}

function init() {
	if($('email_1')) {
		$('email_1').innerHTML = '<a href="mailto:abdulhayy@spy' + 'oftheheart.com\">abdulhayy@spy'+ 'oftheheart.com</a>';
	}
}

window.onload=init;