
                                   <!--


                                    function myDisplayDate( theDate )
                                    {
                                     var daysOfWeek   = new Array( "", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" );
                                     var monthsOfYear = new Array( "January", "February", "March", "April", "May", "June", "July", "August", 

                                "September", "October", "November", "December" );
                                     var dateSuffix   = new Array( "", "st", "nd", "rd", "th", "th", "th", "th", "th", "th", "th", "th", "th", "th", 

                                "th", "th", "th", "th", "th", "th", "th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th", "th", "st" )

                                     var myWeekDay = new String( daysOfWeek[theDate.getDay()] );
                                     var myDate    = new String( theDate.getDate() + dateSuffix[theDate.getDate()] );
                                     var myMonth   = new String( monthsOfYear[theDate.getMonth()] );

                                     return myWeekDay + " &nbsp; " + myMonth + "&nbsp; " + myDate +   ", " + theDate.getFullYear();

                                     // NOTE getFullYear() is new in JavaScript v1.2, for earlier versions use:
                                //   return myWeekDay + " the " + myDate + " of " + myMonth + ", " + theDate.getYear();
                                    }

                                    function myDisplayTime( theDate )
                                    {
                                     var timeSuffix    = new Array( "am", "pm" );
                                     var timeSeparator = new String( ":" );

                                     // I like 12 hour time so we format the hours appropriately
                                     var myNHours = theDate.getHours() % 12;
                                     var myHours  = new String( myNHours );
                                     if ( myNHours == 0 )
                                     {
                                      myHours = "12";
                                     }

                                     var myMins   = new String( theDate.getMinutes() );
                                     

                                     // Add any required leading zeros to the minutes and seconds
                                     if ( myMins.length < 2 )
                                     {
                                      myMins = "0" + myMins;
                                     }

                                    

                                     var mySuffix = new String( timeSuffix[1] );
                                     if ( theDate.getHours() < 12 )
                                     {
                                      mySuffix = timeSuffix[0];
                                     }

                                     return myHours + timeSeparator + myMins +  " " + mySuffix;
                                    }
                                   //-->
                                 