on run
	tell application "Finder"
		copy comment heading of control panel "Views" of control panels folder to NOW
		if NOW is false then
			set size heading of control panel "Views" of control panels folder to false
			set kind heading of control panel "Views" of control panels folder to false
			set label heading of control panel "Views" of control panels folder to false
			set date heading of control panel "Views" of control panels folder to false
			set comment heading of control panel "Views" of control panels folder to true
		else
			set size heading of control panel "Views" of control panels folder to true
			set kind heading of control panel "Views" of control panels folder to true
			set label heading of control panel "Views" of control panels folder to true
			set date heading of control panel "Views" of control panels folder to true
			set comment heading of control panel "Views" of control panels folder to false
		end if
	end tell
end run