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

function popupWindow(goLocation,wname,wdth,hght,stl)
{
 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=50,';
  if(isNetscape) positionCode='screenX=30,screenY=50,';
 }

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

function check_search()
{
	if(document.srchform.skey.value=='') return false;
	return true;
}