function Break() {
	str = document.getElementById('text').innerHTML;
	reg = /à/g; str=str.replace(reg, "à<span class='h'>ä</span>");
	reg = /ÿ/g; str=str.replace(reg, "ÿ<span class='h'>ò</span>");
	reg = /î/g; str=str.replace(reg, "î<span class='h'>ð</span>");
	reg = /å/g; str=str.replace(reg, "å<span class='h'>ï</span>");
	reg = /ó/g; str=str.replace(reg, "<span class='h'>õ</span>ó");
	reg = /þ/g; str=str.replace(reg, "þ<span class='h'>ã</span>");
	result = str;
	document.getElementById('text').innerHTML = result;
}

