function adjustOpacity(Element, Opacity) {
		if (document.all) Element.style.filter = "alpha(opacity="+Opacity+")"; 
		else if (document.getElementById) Element.style.MozOpacity = (Opacity/100);
}