function setOpacity(theObject,theValue) {
	theObject.style.opacity = theValue;
	theObject.style.filter = 'alpha(opacity=' + Math.round(theValue*100) + ')';
}

