<!--
	
function setPointer(theField, thePointerColor)
{
    if (thePointerColor == '' || typeof(theField.style) == 'undefined') 
    {
        return false;
    }
    theField.style.backgroundColor = thePointerColor;
    return true;
}




//-->