<!--
// =========================================================== //
//	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["leftFrame"] == "undefined") || (self.name != "leftFrame")){
	var myPage = getPageName('/nav_left/');
	if(myPage) window.open("/" + myPage, "_top");
}

function fixTableHeight(){
	if(window.innerHeight){
		var newHeight = window.innerHeight - 300;
		MM_findObj("potpis").height=newHeight;
	}else{
		var myHeight;
		screenHeight = screen.Height;
		if(screenHeight == 600){
			myHeight = 25;
		}else if(screenHeight == 768){
			myHeight = 144;
		}else{	// 1024
			myHeight = 350;	//509;
		}
		MM_findObj("potpis").height = myHeight;
	}
}

//-->
