/* strLabel is the email text to display in the browser and
 * strEmailAddress is the actual email address in the mailto link representing the destination
 */
function writeEmailAddressLinkUsingLabelAndAddress(strLabel,strEmailAddress) {
    var strMailTo = "&#109;&#097;&#105;&#108;&#116;&#111;:";
    document.write("<a href=\"" + strMailTo + strEmailAddress + "\">" + strLabel + "</a>");
}