# File temp/element.rb, line 942
                def collect( xpath=nil, &block )
                        collection = []
                        XPath::each( @element, xpath ) {|e| 
                                collection << yield(e)  if e.kind_of?(Element) 
                        }
                        collection
                end