function hideWarning() {
 document.getElementById("noJS").style.display = "none";
}

function createAddress(acct,dmn) {
 addr = acct + '@' + dmn;
 window.location.href="mailto:" + addr;
}
