﻿// Javascript File
// Created 09/24/2008 by Perry Williams
// The code in this file is used to post a notification on the Member Services website.

// Set the variable value to well formed HTML content, which will be placed in a table cell.
var noteContent = "Website security will be upgraded on 09/26/2008<BR />" +
                  "at 5:30PM CDT.&nbsp;&nbsp;Some users may experience<BR />" +
                  "problems logging in after the upgrade.&nbsp;&nbsp;If your<BR />" +
                  "account is affected, please call the Helpdesk at<BR />" +
                  "713-706-4656 for assistance.<br />";

// Uncomment the next line to "turn off" the notification message
noteContent = "";

// This code is always run.  It will add noteContent into the designated table cell.
document.getElementById("Notification").innerHTML=noteContent;
