function gettheDate() {
Todays = new Date();
if ((Todays.getMonth()+1) == 1)
	TheMonth = "January";
if ((Todays.getMonth()+1) == 2)
    TheMonth = "February";
if ((Todays.getMonth()+1) == 3)
    TheMonth = "March";
if ((Todays.getMonth()+1) == 4)
    TheMonth = "April";
if ((Todays.getMonth()+1) == 5)
    TheMonth = "May";
if ((Todays.getMonth()+1) == 6)
    TheMonth = "June";
if ((Todays.getMonth()+1) == 7)
    TheMonth = "July";
if ((Todays.getMonth()+1) == 8)
    TheMonth = "August";
if ((Todays.getMonth()+1) == 9)
    TheMonth = "September";
if ((Todays.getMonth()+1) == 10)
    TheMonth = "October";
if ((Todays.getMonth()+1) == 11)
    TheMonth = "November";
if ((Todays.getMonth()+1) == 12)
    TheMonth = "December";

TheDate = ""+ Todays.getDate();
TheYear= Todays.getYear();
if (navigator.appName == "Netscape") {
	TheYear= (Todays.getYear() + 1900); }
}


var timerID = null;
var timerRunning = false;

function stopclock (){
	if(timerRunning)
		clearTimeout(timerID);
	timerRunning = false;
}

function startclock () {
	// Make sure the clock is stopped
	stopclock();
	gettheDate();
	showtime();
}


function showtime () {
	var now = new Date();
	var hours = now.getHours();
	var minutes = now.getMinutes();
	var seconds = now.getSeconds()
	var timeValue = "" + ((hours >12) ? hours -12 :hours)
	timeValue += ((minutes < 10) ? ":0" : ":") + minutes
	timeValue += ((seconds < 10) ? ":0" : ":") + seconds
	timeValue += (hours >= 12) ? " P.M." : " A.M."
	window.status = TheMonth + " " + TheDate + " " + TheYear + " - " + timeValue;
    timerID = setTimeout("showtime()",1000);
	timerRunning = true;
}

function stat(txt) 
{window.status = txt;}

<!-- JavaScript. -->

homeon = new Image();
homeon.src = "gif/home-b.gif";
homeoff = new Image();
homeoff.src = "gif/home.gif";

troonon = new Image();
troonon.src = "gif/troon-b.gif";
troonoff = new Image();
troonoff.src = "gif/troon.gif";

surinameon = new Image();
surinameon.src = "gif/suriname-b.gif";
surinameoff = new Image();
surinameoff.src = "gif/suriname.gif";

surilinkson = new Image();
surilinkson.src = "gif/surilinks-b.gif";
surilinksoff = new Image();
surilinksoff.src = "gif/surilinks.gif";

surindexon = new Image();
surindexon.src = "gif/surindex-b.gif";
surindexoff = new Image();
surindexoff.src = "gif/surindex.gif";

domainson = new Image();
domainson.src = "gif/domains-b.gif";
domainsoff = new Image();
domainsoff.src = "gif/domains.gif";

musicon = new Image();
musicon.src = "gif/music-b.gif";
musicoff = new Image();
musicoff.src = "gif/music.gif";

toptenon = new Image();
toptenon.src = "gif/topten-b.gif";
toptenoff = new Image();
toptenoff.src = "gif/topten.gif";

mjacksonon = new Image();
mjacksonon.src = "gif/mjackson-b.gif";
mjacksonoff = new Image();
mjacksonoff.src = "gif/mjackson.gif";

respondon = new Image();
respondon.src = "gif/respond-b.gif";
respondoff = new Image();
respondoff.src = "gif/respond.gif";

surveyon = new Image();
surveyon.src = "gif/survey-b.gif";
surveyoff = new Image();
surveyoff.src = "gif/survey.gif";

resumeon = new Image();
resumeon.src = "gif/resume-b.gif";
resumeoff = new Image();
resumeoff.src = "gif/resume.gif";

geocitieson = new Image();
geocitieson.src = "gif/geocities-b.gif";
geocitiesoff = new Image();
geocitiesoff.src = "gif/geocities.gif";

peteron = new Image();
peteron.src = "gif/peter-b.gif";
peteroff = new Image();
peteroff.src = "gif/peter.gif";
