# File lib/ramaze/helper/xhtml.rb, line 21
      def js(name)
        if name =~ /^http/ # consider it external full url
          SCRIPT_TAG % name
        else
          SCRIPT_TAG % "/js/#{name}.js"
        end
      end