# File rexml/xpath.rb, line 51
  def XPath::match element, path=nil, namespaces=nil
			parser = XPathParser.new
			parser.namespaces = namespaces
			path = "*" unless path
			element = [element] unless element.kind_of? Array
			parser.parse(path,element)
		end