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