# File lib/cgikit.rb, line 1154
 def run	
		@attr_alt    = fetch( 'alt' )    # String
		@attr_border = fetch( 'border' ) # Integer
		@attr_file   = fetch( 'file' )   # String
		@attr_src    = fetch( 'src' )    # String

		if application.attributes_check
			check_undefined_attributes( 'alt', 'border', 'file', 'src' )
			check_required_attributes( ['file'], ['src'] )
		end
	end