function firstAlert()
{
firstMsgBegin = new Date("08/11/2010")
firstMsgEnd   = new Date("08/15/2010")

firstMsg = "Maintenance of our system is currently being conducted.\n"
firstMsg += "CU.online, eStatements, View VISA and Check Images are not currently available.\n"
firstMsg += "We apologize for any inconvenience this may cause.\n";

//firstMsg = "\n"
//firstMsg += "System maintenance has been scheduled for:\n"
//firstMsg += "Saturday, August 14th, 8:00pm PDT to Sunday, August 15th, 8:00am PDT.\n"
//firstMsg += "\n"
//firstMsg += "Intermittent downtime for all systems including CU.online and 1st Call may occur.\n"
//firstMsg += "\n"
//firstMsg += "Please arrange to submit transactions before or after the maintenance window.\n"
//firstMsg += "\n"
//firstMsg += "We apologize for any inconvenience this may cause.\n";

todayD = new Date(); todayN = todayD.valueOf()
docLoc = "x" + document.location; curURL = docLoc.substr(1)
// pages that you want to show first alert
showURL1 = "http://www.firstent.org/"
showURL2 = "http://www.firstent.org/index.shtml"
showURL3 = "http://firstent.org/"
showURL4 = "http://firstent.org/index.shtml"


//okToShow = true, if the current URL is the same as one of the page
okToShow = ((curURL == showURL1) || (curURL == showURL2) || (curURL == showURL3) || (curURL == showURL4)) 

if (todayN >= firstMsgBegin.valueOf() && todayN < firstMsgEnd.valueOf() && okToShow)
    alert(firstMsg)
}