obj.style.opacity = Opacity() / 255;
and it fails. I've tried making it a string like this:
obj.style.opacity = Opacity() / 255 + "";
and it still fails. The Opacity() function returns a number between 0 and 255 that represents the desired opacity for the object I'm trying to change. Is there anything I'm doing wrong