function startclock()
{
var thetime=new Date();

var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nsecn=thetime.getSeconds();
var nday=thetime.getDay();
var nmonth=thetime.getMonth();
var ntoday=thetime.getDate();
var nyear=thetime.getYear();
var AorP=" ";

if (nhours>=12)
    AorP="P.M.";
else
    AorP="A.M.";

if (nhours>=13)
    nhours-=12;

if (nhours==0)
   nhours=12;

if (nsecn<10)
 nsecn="0"+nsecn;

if (nmins<10)
 nmins="0"+nmins;

if (nday==0)
  nday="Sunday";
if (nday==1)
  nday="Monday";
if (nday==2)
  nday="Tuesday";
if (nday==3)
  nday="Wednesday";
if (nday==4)
  nday="Thursday";
if (nday==5)
  nday="Friday";
if (nday==6)
  nday="Saturday";

nmonth+=1;

if (nyear<=99)
  nyear= "19"+nyear;

if ((nyear>99) && (nyear<2000))
 nyear+=1900;

if ((nmonth=11) && (nday=3))

var newcontent = document.createElement('div');
newcontent.id = 'daily3';
newcontent.appendChild(document.createTextNode('<h1></h1><h2>November 3</h2><h3>Today you are challenged! Be aware of anyone who tries to impose their beliefs on you. If you don’t have your own opinions you will be convinced.</h3><h4>Daily Number is 3</h4>'));

var scr = document.getElementById('daily3');
scr.parentNode.insertBefore(newcontent, scr);


document.clockform.clockspot.value=nhours+": "+nmins+": "+nsecn+" "+AorP+" ";

setTimeout('startclock()',1000);



} 