function firstAlert()
{
firstMsgBegin = new Date("11/14/2008")
firstMsgEnd   = new Date("12/5/2008")	

firstMsg = "\n"
firstMsg += "For anytimeBanking, for your first post conversion log-in, please click\n"
firstMsg += "on \"First Time Log-in After Conversion\" link.  Your Primary Savings\n"
firstMsg += "Account or Youth Primary Savings Account number will be your account\n"
firstMsg += "number (User ID/Account Number) and the last four digits of your social\n"
firstMsg += "security number will be your password - which you must then immediately change.\n";

todayD = new Date(); todayN = todayD.valueOf()
if (todayN >= firstMsgBegin.valueOf() && todayN < firstMsgEnd.valueOf())
    alert(firstMsg)
}