if (tzu == undefined) {
var tzu = {};
}
tzu.alert = function(txt) {
txt = txt.replace(/Ü/g, "%DC");
txt = txt.replace(/ü/g, "%FC");
txt = txt.replace(/Ö/g, "%D6");
txt = txt.replace(/ö/g, "%F6");
txt = txt.replace(/Ä/g, "%C4");
txt = txt.replace(/ä/g, "%E4");
txt = txt.replace(/ß/g, "%DF");
txt = txt.replace(/n/g, "%0A");
alert(unescape(txt));
}