function doSearch(here) {	// holds onto value in enter field and jumps to it in current view	// saves from scrolling through views to find record	host=window.location.hostname;	path=window.location.pathname;	pro=window.location.protocol;	where=here.link.value + escape(here.search.value);	viewtogo = "http://" + host + spaceToPlus(where);	if (where!=''){		self.location = viewtogo;	}}function spaceToPlus(spacey){	i=spacey.indexOf(" ");	if (i>=0) {		return spacey.substring(0,i)+"+"+spaceToPlus(spacey.substring(i+1,spacey.length));	} else{		return spacey;	}}