//<script language="JavaScript1.2">
<!-- Browser Check -->
iens6 = document.all||document.getElementById
ns4 = document.layers
<!--DEFINE CONTENT-->
<!--PLACE ALL YOUR BOX TITLES HERE - Just add another element to the array -->
var titleArray = new Array
titleArray[1]="<b class=flyertitel>STATISTIEKEN</b>"
titleArray[2]="<img src='http://simplythebest.net/images/smallhome.gif' border='0'>"
titleArray[3]="<b class=body>PlanMagic.com</b>"
titleArray[4]="<b class=body>PlanMagic.com</b>"
<!--BOX CONTENT-->
var linkArray = new Array
linkArray[1]="<br>&nbsp; &#8226; <a class=floter href='reg_crit_hoofd.html'>Regelmatigheidscriteria</a><br>"
linkArray[1]+="&nbsp; &#8226; <a href='nazareth_hoofd.html'>Ronde van Nazareth</a><br>"
linkArray[1]+="&nbsp; &#8226; <a href='zw_nederland_hoofd.html'>Ronde van ZW-Nederland</a><br>"
linkArray[1]+="&nbsp; &#8226; <a href='zegestanden_hoofd.html'>Zegestanden</a><br>"
linkArray[1]+="&nbsp; &#8226; <a href='winnaars_hoofd.html'>Onze winnaars</a><br>"
linkArray[1]+="&nbsp; &#8226; <a href='kampioenschappen_hoofd.html'>Kampioenschappen</a><br>"
<!--END DEFINE CONTENT-->
<!--GLOBAL VARIABLES-->
var thename
var theobj
var thetext
var winHeight
var winWidth
var boxPosition
var headerColor
var tableColor
var timerID
var seconds = 0
var x = 0
var y = 0
var offsetx = 2
var offsety = 2
<!--END GLOBAL VARIABLES-->
if(ns4) {
	document.captureEvents(Event.MOUSEMOVE)
}
document.onmousemove=getXY
<!--GLOBAL FUNCTIONS-->
function buildText(value,tcolor,bcolor) {
// CHANGE EACH ARRAY ELEMENT BELOW TO YOUR OWN CONTENT. MAKE SURE TO USE SINGLE QUOTES INSIDE DOUBLE QUOTES.
text="<table width='"+(winWidth-2)+"' height='"+(winHeight-2)+"' border='0' bgcolor='"+tableColor+"' cellspacing='0' cellpadding=1>"
text+="<tr><td width='"+(winWidth-2)+"' height='20' align='center' valign='middle' bgcolor='"+headerColor+"'>"+titleArray[value]
text+="</td></tr>"
text+="<tr><td width='"+winWidth+"' align='left' valign='top'>"
text+="<font face='verdana,arial' color='"+bcolor+"' size='-2'>"+linkArray[value]+"</font>"
text+="</td></tr></table>"
return text
}
function setObj(textelement,inwidth,inheight,boxpos,titlecolor,boxcolor,tfontcolor,bfontcolor) {
	clearTimeout(timerID)
	boxPosition=boxpos
	tableColor=boxcolor
	headerColor=titlecolor
	winWidth=inwidth
	winHeight=inheight
	thetext=buildText(textelement,tfontcolor,bfontcolor)
	if (boxPosition == "bottomR") { // Right
		x = x + offsetx + 2
		y = y + offsety + 1
	}
	if (boxPosition == "bottomL") { // Left
		x=x-(offsetx+2)-winWidth
		y=y-offsety
	}
	if (boxPosition == "topR") { // Top
		x = x + offsetx
		y = y + offsety -winHeight
	}
	if (boxPosition == "topL") { // Top
		x=x-(offsetx+2)-winWidth
		y=y+offsety-winHeight
	}
	if(iens6){
		thename = "viewer"		
		theobj=document.getElementById? document.getElementById(thename):document.all.thename
		theobj.style.width=winWidth
		theobj.style.height=winHeight
		theobj.style.left=x
		theobj.style.top=y
			if(iens6&&document.all) {
				theobj.innerHTML = ""
				theobj.insertAdjacentHTML("BeforeEnd","<table cellspacing=0 width="+winWidth+" height="+winHeight+" border=0><tr><td width=100% valign=top><font type='times' size='2' style='color:black;font-weight:normal'>"+thetext+"</font></td></tr></table>")
			}
			if(iens6&&!document.all) {
				theobj.innerHTML = ""
				theobj.innerHTML="<table cellspacing=0 width="+winWidth+" height="+winHeight+" border=0><tr><td width=100% valign=top><font type='times' size='2' style='color:black;font-weight:normal'>"+thetext+"</font></td></tr></table>"
			}
	}
	if(ns4){
		thename = "nsviewer"
		theobj = eval("document."+thename)
		theobj.left = x
		theobj.top = y
		theobj.width = winWidth
		theobj.clip.width = winWidth
		theobj.height = winHeight
		theobj.clip.height = winHeight
		theobj.document.write("<table cellspacing=0 width="+winWidth+" height="+winHeight+" border=0><tr><td width=100% valign=top><font type='times' size='2' style='color:black;font-weight:normal'>"+thetext+"</font></td></tr></table>")
		theobj.document.close()
	}
	viewIt()
}
function viewIt() {
		if(iens6) {
			theobj.style.visibility = "visible"
		}
		if(ns4) {
			theobj.visibility = "visible"
		}
}
function stopIt() {
	if(iens6) {
		theobj.innerHTML = ""
		theobj.style.visibility = "hidden"
	}
	if(ns4) {
		theobj.document.write("")
		theobj.document.close()
		theobj.visibility = "hidden"
	}
}
function timer(sec) {
	seconds=parseInt(sec)
	if(seconds>0) {
		seconds--
		timerID=setTimeout("timer(seconds)",1000)
	}else{
		stopIt()
	}
}
function getXY(e) {
	if (ns4) {
		x = 0
		y = 0
		x = e.pageX; 
		y = e.pageY;
	}
	if (iens6&&document.all) {
		x = 0
		y = 0
		x = event.x; 
		y = event.y;
	}
	if (iens6&&!document.all) {
		x = 0
		y = 0
		x = e.pageX; 
		y = e.pageY;
	}
}
<!--END GLOBAL FUNCTIONS-->
//</script>
