function FramesetTest() 
{
	if (top.frames.length==0) 
	{
		Address="index.html?" + location.pathname;
		if(document.images) top.location.replace(Address);
		else top.location.href=Address;
	}
}

function Jump() 
{
	if (top.location.search!="") 
	{
		var Size=top.location.search.length;
		var Address=top.location.search.substring(1,Size);
		if(document.images) top.inhalt.location.replace(Address);
		else top.inhalt.location.href=Address;
	}
}
function UnCryptMailto( s )
{
	var n = 0;
	var r = "";
	for( var i = 0; i < s.length; i++)
	{
		n = s.charCodeAt( i );
		if( n >= 8364 )
		{
			n = 128;
		}
		r += String.fromCharCode( n - 1 );
	}
	return r;
}

function linkTo_UnCryptMailto( s )
{
	location.href=UnCryptMailto( s );
}



