
<!-- Hide JavaScript code
//Netscape MakeArray function
function MakeArray(n) {
   for (var i = 0; i <= n-1; i++) { 
     this[i] = 0 }
     return this
}
// Define path to images
path = "images/";
imageName = new MakeArray(4);
imageName[0] = "";
imageName[1] = "Button_";
imageName[2] = "Circle_";
imageName[3] = "Splash_";
//Create the background image filename array
num = new MakeArray(10);
// Pre-load the images (Called by onLoad in BODY tag)
num[0] = new Image(72,72);
num[1] = new Image(72,72);
num[2] = new Image(72,72);
num[3] = new Image(72,72);
num[4] = new Image(72,72);
num[5] = new Image(72,72);
num[6] = new Image(72,72);
num[7] = new Image(72,72);
num[8] = new Image(72,72);
num[9] = new Image(72,72);
function pre(n) {
// Pre-load the digit images
	num[0].src = path + imageName[n] + "0.gif";
	num[1].src = path + imageName[n] + "1.gif";
	num[2].src = path + imageName[n] + "2.gif";
	num[3].src = path + imageName[n] + "3.gif";
	num[4].src = path + imageName[n] + "4.gif";
	num[5].src = path + imageName[n] + "5.gif";
	num[6].src = path + imageName[n] + "6.gif";
	num[7].src = path + imageName[n] + "7.gif";
	num[8].src = path + imageName[n] + "8.gif";
	num[9].src = path + imageName[n] + "9.gif";
// Define the previous time digits
	h1 = 0;
	h2 = 0;
	m1 = 0;
	m2 = 0;
	s1 = 0;
	s2 = 0;
// Change all images to zero
	hours1.src = num[0].src
	hours2.src = num[0].src
	min1.src = num[0].src
	min2.src = num[0].src
	sec1.src = num[0].src
	sec2.src = num[0].src
// Start the clock
clock();
}
// Get the seconds for the time
function seconds(timeValue) {
	var seconds = eval(timeValue.getSeconds());
	return seconds;
}
// Get the minutes for the time
function minutes(timeValue) {
	var minutes = eval(timeValue.getMinutes());
	return minutes;
}
// Get the hours for the time
function hours(timeValue) {
	var hours = eval(timeValue.getHours());
	return hours;
}
// Extract the two digits for the given time element (d1=tens d2=units)
function getDigits(timeElement) {
// If less than 10 then first digit is 0
	if (eval(timeElement) <=9) {
		d1 = 0;
		d2 = eval(timeElement);
	}
	else {
// The function parseInt truncates a number
		d1 = eval(parseInt(timeElement/10));
		d2 = eval(timeElement - 10*d1);
	}
}
// Load the digit images every second
function clock() {
	time = new Date();
// Get the hours digits
	getDigits(hours(time));
// Check if changed
	if (d2 != h2) {
		document.hours2.src = num[d2].src;
		h2 = d2;
	}
	if (d1 != h1) {
		document.hours1.src = num[d1].src;
		h1 = d1;
	}
// Get the minutes digits
	getDigits(minutes(time));
	if (d2 != m2) {
		document.min2.src = num[d2].src;
		m2 = d2;
	}
	if (d1 != m1) {
		document.min1.src = num[d1].src;
		m1 = d1;
	}
// Get the seconds digits
	getDigits(seconds(time));
	if (d2 != s2) {
		document.sec2.src = num[d2].src;
		s2 = d2;
	}
	if (d1 != s1) {
		document.sec1.src = num[d1].src;
		s1 = d1;
	}
// Wait 0.2 seconds and do it again
	timerID = setTimeout("clock()",200);
}
// Find which image style is selected and load the images
function newImg() {
	for (i=0; i<=3; i++) {
		if (document.forms[0].numb[i].checked) {
			pre(i);
			}
		}
	}
// end hide -->

<!--
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->


<!--
function MM_checkBrowser(NSvers,NSpass,NSnoPass,IEvers,IEpass,IEnoPass,OBpass,URL,altURL) { //v4.0
  var newURL='', verStr=navigator.appVersion, app=navigator.appName, version = parseFloat(verStr);
  if (app.indexOf('Netscape') != -1) {
    if (version >= NSvers) {if (NSpass>0) newURL=(NSpass==1)?URL:altURL;}
    else {if (NSnoPass>0) newURL=(NSnoPass==1)?URL:altURL;}
  } else if (app.indexOf('Microsoft') != -1) {
    if (version >= IEvers || verStr.indexOf(IEvers) != -1)
     {if (IEpass>0) newURL=(IEpass==1)?URL:altURL;}
    else {if (IEnoPass>0) newURL=(IEnoPass==1)?URL:altURL;}
  } else if (OBpass>0) newURL=(OBpass==1)?URL:altURL;
  if (newURL) { window.location=unescape(newURL); document.MM_returnValue=false; }
}

//window moveto, resize

//self.moveTo(0,0)

//self.resizeTo(screen.availWidth,screen.availHeight)

//-->
//-->
