//--------------------------------// Window Open
function wo(pic,alt,wid,heg) {
	wtop = (screen.height/2-heg/2);
	wleft = (screen.width/2-wid/2);
	blank = window.open('','_blank','status=0,width='+ wid +',height='+ heg +',top='+ wtop +',left='+ wleft);
	page = '<html><head><title>'+ alt +'</title><script type="text/javascript">document.onkeypress=function esc(e){if(typeof(e)=="undefined"){e=event;}if(e.keyCode==27){self.close();}}</script></head>'+
			 '<body style="padding:0;margin:0;background:#fff;">'+
			 '<img src="18209.html" width="'+ wid +'" height="'+ heg +'" style="border:none;cursor:pointer" onclick="self.close()" alt="" />'+
			 '</body>
<!-- Mirrored from www.bestofafrica.ru/js/wo.js by HTTrack Website Copier/3.x [XR&CO'2005], Thu, 15 Dec 2005 09:51:04 GMT -->
</html>';	
	blank.document.open();
	blank.document.write(page);
	blank.document.close();
}

function nav_active(nav_id)
{
	document.getElementById("nav_" + nav_id).className = "nav_active";
}

function nav_inactive(nav_id)
{
	document.getElementById("nav_" + nav_id).className = "";
}

function map_active(nav_id)
{
	document.getElementById(nav_id).className = "map_active";
}

function map_inactive(nav_id)
{
	document.getElementById(nav_id).className = "";
}
