/* Name File */
// scripts.js
/* Omschrijving */
// verzameling java
			
/* Creatuur en datum */
// ND   12-2007 

// versie 0.0.1


<!-- Java functie om de gehele <td> als link te gebruiken -->
<SCRIPT language=javascript>
<!--
function getLink(elem) {
var child_array = elem.childNodes; var i=0;
for (; i<child_array.length; i++) {
if(child_array[i].nodeName.toLowerCase() == "a") break;
else continue;
}return(child_array[i]);}


function LmOver(elem, clr)
{var linkElem = getLink(elem);
elem.style.backgroundColor = clr;
elem.style.cursor = 'hand'}

function LmOut(elem, clr)
{var linkElem = getLink(elem);
elem.style.backgroundColor = clr;
}

function LmDown(elem, clr)
{var linkElem = getLink(elem);
elem.style.backgroundColor = clr;
elem.style.cursor = 'hand';}

function LmUp(path)
{location.href = path;}
//-->
</SCRIPT>
