function StartClock12() {
 Time12 = new Date();
 Cur12Hour = Time12.getHours();
 Cur12Mins = Time12.getMinutes();
 The12Time = (Cur12Hour > 12) ? Cur12Hour - 12 : Cur12Hour;
 The12Time += ((Cur12Mins < 10) ? ':0' : ':') + Cur12Mins;
 The12Time += (Cur12Hour > 12) ? ' PM': ' AM';
 document.CForm.Clock12.value = The12Time;
 window.status = The12Time;
 setTimeout('StartClock12()',10000);
 }
 
function StartDate() {
 TDay = new Array('Sunna`s Day', 'Mani`s Day', 'Tyr`s Day', 'Woden`s Day', 'Thor`s Day',
'Frigga`s Day', 'Satyr`s Day');
 TMonth = new Array('Snowmoon', 'Horning', 'Lenting', 'Ostara', 'Merrymoon',
'Midyear', 'Haymoon', 'Harvest', 'Shedding', 'Hunting', 'Fogmoon', 'Yule');
 TDate = new Date();
 CurYear = TDate.getYear();
 CurMonth = TDate.getMonth();
 CurDayOw = TDate.getDay();
 CurDay= TDate.getDate();
 TheDate = TDay[CurDayOw] + ', ';
 TheDate += TMonth[CurMonth] + ' ';
 TheDate += CurDay + ', ';
 TheDate += ('2260 RE');
 document.CForm.CDate.value = TheDate;
 }