function goTo(where) {
	 document.location.reload(where);
	 return false;
}

function popupWindow(goLocation,wname,wdth,hght,toolbr)
{
 var v=parseInt(navigator.appVersion);
 isNetscape=navigator.appName.indexOf('Netscape')>=0;
 isExplorer=navigator.appName.indexOf('Explorer')>=0;

 var ww = wdth;
 var wh = hght;

 positionCode='';

 if(v>=4)
 {
  if(isExplorer) positionCode='left=30,top=40,';
  if(isNetscape) positionCode='screenX=30,screenY=40,';
 }

var menu;
if(toolbr!='') menu='menubar=1,';

 newWindow=window.open(goLocation,wname,
 'width='+ww+',height='+wh+','+
 positionCode+
 'location=0,menubar=1,'+
 'toolbar=0,'+
 'scrollbars=1,'+
 'status=1,'+
 'resizable=1');
  if(v>=3) newWindow.focus();
  return false;
}

function ShowGalWnd(id,l,pth)
{
popupWindow(pth+'inc/showphoto.php?photo='+id+'&lang='+l,'aphoto',500,410,'');
return false;
}

function ShowNewsWnd(id,pth)
{
popupWindow(pth+'inc/shownewsphoto.php?photo='+id,'aphoto',500,410,'');
return false;
}