function emailDialog(id, lang) {
    var myURL = new String(window.location);
    var myResult = myURL.indexOf("Module.aspx");
    var myResult2 = myURL.indexOf("icalendar.esolutionsgroup.ca");
    if (myResult == -1 && myResult2 == -1) {
        window.open("/en/email/emailattachment.aspx?id=" + id + "&ref=" + document.location.href, "_blank", "width=600px, height=450px, edge=Raised, center=Yes, help=No, resizable=no, status=No");
    }
    else {
        alert("Sorry, email is disabled within iCaledar or iBlog generated pages");
    }
}