<!--
// =========================================================== //
//	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
//
// =========================================================== //
var popUpWin=0;
function popUpWindow(URLStr, width, height){
	width += 20;
	height += 20;
	leftStart = (screen.width - width)/2;	// Za da bide centrirano, gore-dolu i levo-desno
	topStart = (screen.height - height)/2;
  if(popUpWin){
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'width='+width+',height='+height+',left='+leftStart+', top='+topStart+',scrollbars=no');
}

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)
	}
	return myPage;
}

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


//-->
