/* - - - - - - - - - - - - - - - - - - - - - - -
 JavaScript
 Tuesday, January 03, 2006 2:08:51 AM
 HAPedit 3.1.11.111
 - - - - - - - - - - - - - - - - - - - - - - - */

<!--
var appVer = navigator.appVersion;
var NS = (navigator.appName == 'Netscape') && ((appVer.indexOf('3') != -1)
|| (appVer.indexOf('4') != -1));
var MSIE = (appVer.indexOf('MSIE 4') != -1);

function frameTest(){
        if(top==self) {
                var parent = "index.html"
                var currURL = unescape(window.location.pathname);
                var newURL = parent + "?" + currURL;
                if (NS || MSIE)
                        location.replace(newURL);
                else
                        location.href = newURL;
        }
}

function MakeArray(n) 
        {
        this.length = n
        return this
        }

elMes = new MakeArray(12)
elDia = new MakeArray(7)

elMes[1] = "January"
elMes[2] = "February"
elMes[3] = "March"
elMes[4] = "April"
elMes[5] = "May"
elMes[6] = "June"
elMes[7] = "July"
elMes[8] = "August"
elMes[9] = "September"
elMes[10] = "October"
elMes[11] = "November"
elMes[12] = "December"
elDia[1] = "Sunday"
elDia[2] = "Monday"
elDia[3] = "Tuesday"
elDia[4] = "Wednesday"
elDia[5] = "Thursday"
elDia[6] = "Friday"
elDia[7] = "Saturday"


function showToday(todayDate) 
        {
        var theDate = todayDate.getDate()
        var theDay = elDia[todayDate.getDay() + 1]
        var theMonth = elMes[todayDate.getMonth() + 1]
        var theYear
        if (todayDate.getYear())
                {
                theYear = todayDate.getYear()
                }
        else
                {
                theYear = todayDate.getYear()
                }
       // return theDay + ", " + theMonth + " " + theDate + ", " + theYear
        return theMonth + " " + theDate + ", " + theYear
        }
// -->

