i have this style
<div id="diamonds" style="position:absolute; left:0px; top:0px; width:130px; height:255px; z-index:1; visibility: hidden;">
i have a function that changes it with JavaScript
b.left=X_pos;
b.top=Y_pos;
alert('X_pos= '+X_pos+' left= '+b.left+' Y_pos= '+Y_pos+' top= '+b.top);
it changes the left and top to a new number, in IE it sees tghe new number and changes the left and top to the new number, however in firefox it DOES see the new number (it know what X_pos is) but it does not change the style to the new number.... so i guess this is how you change the style in IE so how do i change the style in firefox?