// rot13-Algorithmus
var map = new Array();
var s = "abcdefghijklmnopqrstuvwxyz";
  
for (var i=0; i<s.length; i++)
	map[s.charAt(i)] = s.charAt((i+13)%26);

for (i=0; i<s.length; i++)
	map[s.charAt(i).toUpperCase()] = s.charAt((i + 13) % 26).toUpperCase();

function rot13 (str)
{
	var rwert = "";
	for (i = 0; i < str.length; i++)
	{
		var b = str.charAt(i);
		if (b == '+')
			rwert += '@';
		else
			rwert += (b >= 'A' && b <= 'Z' || b >= 'a' && b <= 'z' ? map[b] : b);
	}
	return rwert;
}

// Fenster aus dem Frame befreien.
if (self != top)
	top.location.replace(self.location.href);