Empty style.display in CSS
If the value is set to empty string, it just falls back to the css file the class is associated to!
So, for example, take a CSS class defined as:
.test{
display: block;
}
If one sets object.style.display="" with javascript, then the css display property switches back to block!
