// 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 01/09/2009<BR />" +
                  "at 5:30PM CDT.&nbsp;&nbsp; If you have any questions<BR />" +
                  "or issues, please call the Helpdesk at<BR />" +
                  "713-706-4656 for assistance.<br />";
var turnOffLogin = "N";
// 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;
