function FramesetUeberpruefen(link)
{
	if(top.frames.length==0)
	{
	var Adresse="index.html?"+link;
		if(document.images)
		{
			top.location.replace(Adresse);
		}
		else
		{
			top.location.href=Adresse;
		}
	}
}

function framesetnachladen()
{
	if(top.location.search!="")
	{

		var Adresse=top.location.search.substring(1, top.location.search.length);
		if(document.images)
		{
			top.haupt.location.replace(Adresse);
		}
		else
		{
			top.haupt.location.href=Adresse;
		}
	}
}
