 function onSearch(){
			var gname,itype,url;
			gname = document.Search.name.value;
			
			url = "./Search.asp?gname="+gname;
			window.open(url,null,"");
			return false;
		  }
		  function newswin(url) {
			  var oth="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=200,top=200";
			  oth = oth+",width=500,height=400";
			  var newswin=window.open(url,"newswin",oth);
			  newswin.focus();
			  return false;
			}