function demoAlert(isDemo) {
    if (isDemo) {
        alert('You are currently logged into a demo organization.\n' +
              'Because this organization is for demonstration purposes\n' +
              'only, changes you have made will not be persisted to the\n' +
              'database.\n' +
              '\n' +
              'If you would like to view a fully functional organization,\n' +
              'please contact your Lifetouch representative.');
    }
}
function demoAlertEmail(isDemo) {
    if (isDemo) {
        alert('You are currently logged into a demo organization.\n' +
              'Because this organization is for demonstration purposes\n' +
              'only, email functionality has been disabled.\n' +
              '\n' +
              'If you would like to view a fully functional organization,\n' +
              'please contact your Lifetouch representative.');
    }
}