ccImageSrc = new Array ("images/arrow_red.gif", "images/arrow_black.gif", "images/arrow_blank.gif", "images/arrow_dot_blue.gif", "images/arrow_dot_red.gif")
ccImageList = new Array ();

for (counter in ccImageSrc) {
	ccImageList[counter] = new Image();
	ccImageList[counter].src = ccImageSrc[counter];
	}
function LinkIn(LinkName,StatusBarText,ArrowColor){
	if(document.images){
		LinkName.src = "images/" + "arrow_" + ArrowColor + ".gif";
	}
	if(StatusBarText){
		window.status = StatusBarText;
	}
}
function LinkOut(LinkName, ArrowBlank){
	if(document.images){
		LinkName.src = "images/" + "arrow_" + ArrowBlank + ".gif"
	}
	window.status = "Done";
}

function setPointer(theRow, theClassName)
{
    if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') {
        return false;
    }
    var row_cells_cnt           = theRow.cells.length;
    for (var c = 0; c < row_cells_cnt; c++) {
        theRow.cells[c].className = theClassName;
    }

    return true;
} // end of the 'setPointer()' function
