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,'+menu+
 'toolbar=0,'+
 'scrollbars='+toolbr+','+
 'status=1,'+
 'resizable=1');
  if(v>=3) newWindow.focus();
  return false;
}

function ShowPicWnd(id,pth,lng)
{
popupWindow(pth+'inc/showphotos.php?act=1&goods='+id+'&lang='+lng,'uphoto',570,450,'');
return false;
}
