function changeImages() {
	if (document.images) {
		for (var i=0; i < changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
function findDOM(objectID)
{
	if(document.getElementById)
	{
		//alert("Get by ID");
		return (document.getElementById(objectID));
	}
	else if(document.all)
	{
		//alert("Get by ALL");
		return (document.all[objectID]);
	}
	else if((navigator.appName.indexOf('Netscepe') != -1) && (parseInt(navigator.appVersion) == 4 ))
	{
		//alert("Get by Layers");
		return (document.layers[objectID]);
	}
}

function rowUpdateBg(row, box) {
  if (box && box.checked) {
	row.style.backgroundColor = "#F7F0F2";
  } else {
	row.style.backgroundColor = (row == rowWithMouse) ? '#F7F0F2' : '#FFFFFF';
  }
}


function rowRollover(myId, isInRow) {
  // myId is our own integer id, not the DOM id
  // isInRow is 1 for onmouseover, 0 for onmouseout
  var row = document.getElementById('tr_' + myId);
  var box = document.getElementById('box_' + myId);
  rowWithMouse = (isInRow) ? row : null;
  rowUpdateBg(row, box);
}

/*
function changeTD( objectID, class, class1 )
{
	findDOM(objectID)
}
*/