var aCategories = new Array("Inhaltsübersicht",
							"Home",
							"Motorrad",
							"Reiseseite",
							"Thema 004-007",
							"Links",
							"Fotoalben",
							"Impressum");
var aURLs = new Array("empty.html",
					  "home.html",
					  "MOTORRAD/motorrad.html",
					  "REISESEITEN/reiseseite.html",
					  "empty.html",
					  "LINKS/links.html",
					  "FOTOALBEN/fotoalben.html",
					  "IMPRESSUM/impressum.html");
var iActCategory = -1;


function InitFrameset() {
	var bOk = false;

	if(window.location.search != "") {
		//alert("Home_Frameset.InitFrameset(Info: window.location.search='" + window.location.search + "')");
		var Category = window.location.search;
		//alert("Home_Frameset.InitFrameset(Info: Category='" + Category + "')");
		Category = Category.slice(1,Category.length);
		//alert("Home_Frameset.InitFrameset(Info: Category='" + Category + "')");
		
	 	for (var i=0; i < aCategories.length; ++i) {
	 		if(Category == aCategories[i]) {
	 			bOk = true;
	 			//alert("Home_Frameset.InitFrameset(Info: Load'" + Category + "'=" + i +")");
				parent.LeftFrame.SetActive(i);
				parent.RightFrame.location.href = aURLs[i];
				i = aCategories.length;
	 		}
	 	}
		if(!bOk) {
			//alert("Home_Frameset.InitFrameset(Err: Category '" + Category + "' not exsist!)");
			status = "Home_Frameset.InitFrameset(Err: Category '" + Category + "' not exsist!)";
			parent.LeftFrame.SetActive(1);
			parent.RightFrame.location.href = aURLs[1];
		}
	}
	else {
		parent.LeftFrame.SetActive(1);
		parent.RightFrame.location.href = aURLs[1];
	}
}
