// JScript source code

var g_title = ".:: WWW.OBI1.DE - obi-wan's global hypertext gateway ::.";

function initFrameset()
{
	if( document.title != g_title )
	{
		alert(" assert title changed ");
	}
	// wg. Opera geht das mit dem Setzen nicht so einfach, muß schon stimmen!!!!
}

function testFrames()
{
	var fstitle = "";
	var wframeset = window.parent;
	
	fstitle = wframeset.document.title;
	
	if( fstitle != g_title )
	{
		wframeset.location.href = "index.html";
	}
}
