// JavaScript Document

function createEmail(address, domain, ext) {
	document.write("<a href=\"mailto:" + address + "@" + domain + "." + ext + "\">" + address + "@" + domain + "." + ext + "</a>");
}

function blueEmail(address, domain, ext) {
	document.write("<a href=\"mailto:" + address + "@" + domain + "." + ext + "\" style=\"color:blue;\">" + address + "@" + domain + "." + ext + "</a>");
}

function setStyle(id, background, color) {
	document.getElementById(id).style.backgroundColor = background;
	document.getElementById(id).style.color = color;
}
