/** * This array is used to remember mark status of rows in browse mode */ var marked_row = new Array; /** * Sets/unsets the pointer and marker in browse mode * * @param object the table row * @param integer the row number * @param string the action calling this script (over, out or click) * @param string the default background color * @param string the color to use for mouseover * @param string the color to use for marking a row * * @return boolean whether pointer is set or not */ function setPointer(theRow, theAction, theDefaultColor, thePointerColor, theMarkColor) { var theCells = null; theRow.bgColor="#FF9C00"; theRow.className="no_category"; return true; } // end of the 'setPointer()' function