<!-- Image rollover
// Copyright © 2002 fikse.net as
// Created by fnet.leif 
/*	DESCRIPTION : 	function for changing background color when moving 
					cursor over tablecell
	PARAMS : 		idTable,idTR,idTD - which table,row and cell to operate on
					color - which color to switch to
*/

function fn_RollOver(idTable,idTR,idTD, color){
	mybody=document.getElementsByTagName("body").item(0);
	mytable=mybody.getElementsByTagName("table").item(idTable);
	mytablebody=mytable.getElementsByTagName("tbody").item(0);
	myrow=mytablebody.getElementsByTagName("tr").item(idTR);
	myCell=myrow.getElementsByTagName("td").item(idTD);
	myCell.style.background = color;
	myCell.style.cursor = "hand";
}

function fn_RollOut(idTable,idTR,idTD, color){
	mybody=document.getElementsByTagName("body").item(0);
	mytable=mybody.getElementsByTagName("table").item(idTable);
	mytablebody=mytable.getElementsByTagName("tbody").item(0);
	myrow=mytablebody.getElementsByTagName("tr").item(idTR);
	myCell=myrow.getElementsByTagName("td").item(idTD);
	myCell.style.background = color;
}

// -->