<!--
// =========================================================== //
//	Copyright (c) 2005 www.studio.com.mk
// =========================================================== //
//
//	Author: Toni Matev
//	Web address: http://www.studio.com.mk
//
//	This scripts could be used and distributed for FREE
//	but this copyright must be unmodified
//
// =========================================================== //
function getPageName(searchString){
	var myPage = '';
	var pathName = location.pathname;
	strPosition = pathName.indexOf(searchString);
	if (strPosition == 0){		// Ako lokacijata pocnuva so baraniot string
		strPosition += searchString.length;		// dolzina na vlezniot string
		myPage = pathName.substr(strPosition);	// zemi go stringot sto ostanuva (od searchString do kraj)
	}
	if(myPage.indexOf('_no_selected') == 0) myPage = 'index.html';
	return myPage;
}

if((typeof top.frames["topNavFrame"] == "undefined") || (self.name != "topNavFrame")){
	var myPage = getPageName('/nav_top/');
	if(myPage) window.open("/" + myPage, "_top");
}


//-->
