function openWin(URL)
{
aWindow=window.open(URL, "thewindow", "scrollable=yes, width=550, height=550");
}
function go(url) {   
location.href = url;}

function openAdvertWin(URL)
{
aWindow=window.open(URL, "thewindow", "scrollable=yes, width=550, height=350");
}
function go(url) {   
location.href = url;}
   
function clocky() {
if (!document.layers && !document.all) return;
var digital = new Date();
var hours = digital.getHours();
var minutes = digital.getMinutes();
var seconds = digital.getSeconds();
var amOrPm = "am";
if (hours > 11) amOrPm = "pm";
if (hours > 12) hours = hours - 12;
if (hours == 0) hours = 12;
if (minutes <= 9) minutes = "0" + minutes;
if (seconds <= 9) seconds = "0" + seconds;
dispTime = hours + ":" + minutes + ":" + seconds + " " + amOrPm;
if (document.layers) {
document.layers.pendule.document.write(dispTime);
document.layers.pendule.document.close();
}
else
if (document.all)
pendule.innerHTML = dispTime;
setTimeout("clocky()", 1000);
}

function showDate() {
now = new Date(); day = new Object(); month = new Object();
day[0] = "Sunday"; day[1] = "Monday"; day[2] = "Tuesday";
day[3] = "Wednesday"; day[4] = "Thursday"; day[5] = "Friday"; day[6] = "Saturday";
month[0] = "January"; month[1] = "Feb."; month[2] = "March"; month[3] = "April";
month[4] = "May"; month[5] = "June"; month[6] = "July"; month[7] = "Aug.";
month[8] = "September"; month[9] = "October"; month[10] = "November"; month[11] = "December";
year = now.getYear();
if (year < 1000) year += 1900;
document.write("<strong><font face=\"verdana, Arial, Helvetica, sans-serif\" size=1 color=\"#7E2209\">" + day[now.getDay()] + ", " + now.getDate() + " " + month[now.getMonth()] + " " + year + "</font></strong>&nbsp;&nbsp;</td>");
}

<!-- Scripting Advert -->
   // Initialise global variables for ticker tape.
var varUOGtickerText = '';
var varUOGtickerLength = 0;

// Run an incremental ticker tape.
function fnAdvertTicker(varUOGinitialTickerText) {
	var varUOGtimeout = 100;
	var objUOGtickerHolder = document.getElementById('tickerAnchor');
	varUOGtickerText = varUOGinitialTickerText;

	if (varUOGtickerLength % 2) {
		varUOGcursor = '_';
	} else {
		varUOGcursor = '-';
	}
	if (varUOGtickerLength == varUOGinitialTickerText.length) {
		varUOGcursor = '';
	}
	objUOGtickerHolder.innerHTML = varUOGinitialTickerText.substring(0, varUOGtickerLength) + varUOGcursor;

	if (varUOGtickerLength < varUOGinitialTickerText.length) {
		varUOGtickerLength++;
	} else {
		varUOGtickerLength = 0;
		varUOGtimeout = 1000;
	}

	window.setTimeout('fnAdvertTicker(varUOGtickerText)', varUOGtimeout);

	return null;
}
