function checkFrameset() 
{
	// lokal soll das frame nicht umgeschaltet werden: 
	if ( "file" == location.href.substr(0,4).toLowerCase())
	{
		return;
	}
	

	if( top == self)
	{

		location.href="index.html";

	} 

}