# File lib/whois/record/parser/whois.biz.rb, line 114
          def contact(element, type)
            node("#{element} ID") do |raw|
              Record::Contact.new(
                :type         => type,
                :id           => node("#{element} ID"),
                :name         => node("#{element} Name"),
                :organization => node("#{element} Organization"),
                :address      => node("#{element} Address1"),
                :city         => node("#{element} City"),
                :zip          => node("#{element} Postal Code"),
                :state        => node("#{element} State/Province"),
                :country      => node("#{element} Country"),
                :country_code => node("#{element} Country Code"),
                :phone        => node("#{element} Phone Number"),
                :fax          => node("#{element} Facsimile Number"),
                :email        => node("#{element} Email")
              )
            end
          end