function alter(what,col)
        {
        try
        {
        if (what.style.backgroundColor!="red") {
        (what != null)? what.style.background = col : null;
        }
        }
        catch(errorObject)
        {
        alert("what is not an obj\t error = " + errorObject.description);
        }
}

