/*
		Modified by CoffeeCup Software
		This code is Copyright (c) 1997 CoffeeCup Software
		all rights reserved. License is granted to a single user to 
		reuse this code on a personal or business Web Site.
	*/
	var now = new Date();
	var hours = now.getHours();
	var minutes = now.getMinutes();
	var timeValue = "" + ((hours >12) ? hours -12 :hours);
	timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
	timeValue += (hours >= 12) ? " P.M." : " A.M.";
	timerRunning = true;
	mydate = new Date();
	myday = mydate.getDay();
	mymonth = mydate.getMonth();
	myweekday= mydate.getDate();
	weekday= myweekday;
	myyear= mydate.getYear();
	year = myyear;
	switch(myday){
	     	case 0:
			day = " Sunday, ";
	     		break;
		case 1:
		   	day = " Monday, ";
			break;
	     	case 2:
		     	day = " Tuesday, ";
		     	break;
	     	case 3:
		     	day = " Wednesday, ";
		     	break;
	     	case 4:
		     	day = " Thursday, ";
		     	break;
		case 5:
		     	day = " Friday, ";
			break;
	    	case 6:
		     	day = " Saturday, ";
			break;
	}
	
     	switch(mymonth){
     		case 0:
              		month = "January ";
              		break;
     		case 1:
              		month = "February ";
              		break;
     		case 2:
             		month = "March ";
             		break;
     		case 3:
            		month = "April ";
            		break;
     		case 4:
              		month = "May ";
              		break;
     		case 5:
              		month = "June ";
              		break;
     		case 6:
              		month = "July ";
              		break;
     		case 7:
            		month = "August ";
            		break;
     		case 8:
           		month = "September ";
           		break;
     		case 9:
          		month = "October ";
          		break;
    		case 10:
          		month = "November ";
          		break;
		case 11:
			month = "December";
			break;
	}

     if (myyear >= 100 && myyear <= 1900){
          year = myyear + 1900;
     }

     var dateString = day + month + " " + " " + myweekday;

