Index: branches/unlabeled/unlabeled-1.3.2/core/admin_templates/js/ajax.js =================================================================== diff -u -r7648 -r8180 --- branches/unlabeled/unlabeled-1.3.2/core/admin_templates/js/ajax.js (.../ajax.js) (revision 7648) +++ branches/unlabeled/unlabeled-1.3.2/core/admin_templates/js/ajax.js (.../ajax.js) (revision 8180) @@ -115,7 +115,8 @@ } Request.setOpacity = function (opacity, id) { - var object = document.getElementById(id).style; + var elem = typeof(id)=='string' ? document.getElementById(id) : id; + var object = elem.style; object.opacity = (opacity / 100); object.MozOpacity = (opacity / 100); object.KhtmlOpacity = (opacity / 100);