//Check the l10n global variable for a translation for s, returning it if found function getL10n(s) { return typeof(l10n) === "undefined" || typeof(l10n[s]) === "undefined" ? s : l10n[s]; } //L10n strings for javascript files (I don't love this approach, but it works for now...) var l10n = { "Thank you for joining our mailing list!": "Thank you for joining our mailing list!", "Security error.": "Security error." };