# File lib/cgikit.rb, line 1475
 def to_s
		to_s = "<input type=\"radio\" name=\"#@attr_name\" value=\"#@attr_value\""
		if @attr_checked  then to_s << " checked" end
		if @attr_disabled then to_s << " disabled" end
		to_s << ">"
	end