//The script for the Date/Time display is adapted by Alden 
 //Bliss, from an example in Netscape's JavaScript Authoring Guide 
 //documentation. -->

   <!-- Hide the script from old browsers --
   //var timerID = null
   //var timerRunning = false
   //function stopclock (){
    // if(timerRunning)
     //  clearTimeout(timerID);
    // timerRunning = false
  // }
  // function showtime () {
   //  var now = new Date();
   //  var year = now.getYear();
   //  var month = now.getMonth() + 1;
  //   var date = now.getDate();
   //  var hours = now.getHours();
  //   var minutes = now.getMinutes();
   //  var seconds = now.getSeconds();
	 

    // var timeValue = "";
     //timeValue += ((hours <= 12) ? hours : hours - 12);
     //timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
     //timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
     //timeValue += (hours < 12) ? " AM" : " PM";
   //  timeValue += ((month < 10) ? " , 0" : " , ") + month + "-";
   //  timeValue += date + "-" + year;

	//alert (new Date()); // formats date and time according to some strange standard

//new Date().toString(); // formats date and time according to that same strange standard

//new Date().toLocaleString(); // formats date and time according to the user's locale settings

//new Date().toDateString(); // formats date according to the user's locale settings

//alert (new Date().toTimeString()); // formats time according to the user's locale settings

// and you can overwrite any of the above methods to your liking:
//Date.prototype.toString = function () {return [['Sunday,', 'Monday,', 'Tuesday,', 'Wednesday,', 'Thursday,', 'Friday,', 'Saturday,'] [this.getDay()], this.getDate(), ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] [this.getMonth()], this.getFullYear()].join(' ')} 
//Date.prototype.toString = function () {return [['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'] [this.getDay()], ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] [this.getMonth()], [this.getDate()], this.getFullYear()]}
var now = new Date();
var day = [['Sun', 'Mon', 'Tues', 'Wed', 'Thurs', 'Fri', 'Sat'] [now.getDay()]];
var month = [[' Jan', ' Feb', ' March', ' April', ' May', ' June', ' July', ' Aug', ' Sept', ' Oct', ' Nov', ' Dec'] [now.getMonth()]];
var araw = now.getDate();
var taon = now.getFullYear()
var timeValue = "";
timeValue += day + month;
timeValue += " " + araw;
timeValue += ", " + taon;
	
	
	var contentobj=document.all.dyntxtarea;
	 contentobj.innerHTML='<center><em>'+timeValue+'</em></center>';

     //document.clock.face.value = timeValue;
       // you could replace the above line with this
       // and have a clock on the status bar:
       // window.status = timeValue;

   //  timerID = setTimeout("showtime()",1000);
   //  timerRunning = true
  // }
  // function startclock () {
     // Make sure the clock is stopped
   //  stopclock();
  //   showtime()
 //  }
   // --end hiding here -->
