Hi,I have a subroutine which should get any element attribute dynamically, based on attribute name. Simplified version would be as:function getElementAttribute(iElement, iAttributeName) { getElementAttribute = iElement.getAttribute(iAttributeName);}This works good, except that I don't know how to ge...