var dayName = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monName = new Array("January","February","March","April","May","June","July","August","September","October","November","December")
var now = new Date

var yr = now.getYear()

var hr = now.getHours()
   if (hr > 12) {nhr = hr - 12}
   else
      {nhr = hr}
   if (hr == 0) {nhr = "12"}
   else
      {nhr = nhr}

var min = now.getMinutes()
   if (min < 10) {nmin = "0"+min}
   else
      {nmin = min}

var sec = now.getSeconds()
   if (sec < 10) {nsec = "0"+sec}
   else
      {nsec = sec}
   if (nsec >= 60) {nnsec = "00"}
   else
      {nnsec = nsec}      
      
var ampm = now.getHours()
   if (ampm >= 12) {nampm = "PM"}
   else
      {nampm = "AM"}

function login()       { 

     var done=0;
     var username=document.userInfos.username.value;
     var pw=document.userInfos.pw.value;

   if (isBlank(document.userInfos.username.value)) {
      alert("The USERNAME Cannot Be Blank ... Try Again!");
      document.userInfos.username.focus();
      return false;
      }
   if (isBlank(document.userInfos.pw.value)) {
      alert("The PASSWORD Cannot Be Blank ... Try Again!");
      document.userInfos.pw.focus();
      return false;
      }

//   This is the SPECIAL USE and MY FRIENDS entry codes and their specific web pages:
     if (username=="anna"               && pw=="gregg")         { window.location="http://www.drgrimmett.com/AnyaPage01.htm"; done=1; }
     if (username=="richp"              && pw=="pbr1234")       { window.location="http://www.drgrimmett.com/EducationalModules/Vibration Analysis/Page01.htm"; done=1; }
     if (username=="new"                && pw=="registration")  { window.location="http://www.drgrimmett.com/registration.htm"; done=1; }
     if (username=="javascript"         && pw=="data")          { window.location="http://www.drgrimmett.com/EducationalModules/FORECASTING/DataEntryExamples/DataEntryExample01.htm"; done=1; }
     if (username=="fallpom"            && pw=="pom")           { window.location="http://www.drgrimmett.com/A7D64o099/EducationalModules/POM/000_MainCampusHomePage.htm"; done=1; }
     if (username=="fallforecasting"    && pw=="forecasting")   { window.location="http://www.drgrimmett.com/A7D64o099/EducationalModules/FORECASTING/000_MainCampusHomePage.htm"; done=1; }


//   This is the listing for the Summer I 2006 Main Campus POM WEB Class::
     if (username=="grimmettd"          && pw=="summerIpom")    { document.cookie = "FriendlyName=Dave";        document.cookie = "FormalName=David R. Grimmett";              window.location="http://www.drgrimmett.com/EducationalModules/POM/Syllabi/060605_Web.htm"; done=1; }
     if (username=="stocstille"         && pw=="pom8886")       { document.cookie = "FriendlyName=Rett";        document.cookie = "FormalName=Everett Stocstill";              window.location="http://www.drgrimmett.com/EducationalModules/POM/Syllabi/060605_Web.htm"; done=1; }


//   This is the listing for the Spring 2006 Main Campus POM Class::
     /* 00 */  if (username=="grimmettd"      && pw=="pmcdrg4419")                { document.cookie = "FriendlyName=Dave";        document.cookie = "FormalName=David R. Grimmett";              window.location="http://www.drgrimmett.com/EducationalModules/POM/000_MainCampusHomePage.htm"; done=1; }

//   This is the listing for the Spring 2006 Main Campus Forecasting Class:
     /* 00 */  if (username=="grimmettd"      && pw=="fmcdrg4419")                { document.cookie = "FriendlyName=Dave";        document.cookie = "FormalName=David R. Grimmett";              window.location="http://www.drgrimmett.com/EducationalModules/FORECASTING/000_MainCampusHomePage.htm"; done=1; }



//   This is the listing for the FALL II 2007 Ft Campbell POM Class::
     /* 00 */  if (username=="grimmettd"      && pw=="ffcdrg4419")                { document.cookie = "FriendlyName=Dave";        document.cookie = "FormalName=David R. Grimmett";              window.location="http://www.drgrimmett.com/EducationalModules/FORECASTING/000_FtCampHomePage.htm"; done=1; }
     if (username=="FCPOM"                    && pw=="POM")                       { document.cookie = "FriendlyName=Dave";        document.cookie = "FormalName=David R. Grimmett";              window.location="http://www.drgrimmett.com/A7D64o099/EducationalModules/POM/130_JohnsonsRule/01_Intro.htm"; done=1; }


     if (done==0) { alert("Invalid login!"); }

   }
   

function isBlank(s) {
   return (s == "");
}