on startUp
	put url "file:///Late Show/Programming/Projekte/Joker/scr/special.txt" into theText
	put the number of chars of theText into nct
	repeat with x = 1 to nct
		if (the chartonum of char x of theText) = 13 then
			put the numtochar of 10 into char x of theText
		end if
	end repeat
	put theText
end startUp