﻿var txt = ""
function message() {
    try {
        alert("Thank you! We will get back to you shortly.");
    }
    catch (err) {
        txt = "There was an error on this page.\n\n";
        txt += "Error description: " + err.description + "\n\n";
        txt += "Click OK to continue.\n\n";
        alert(txt);
    }
}