// LINK TO PROFILE FORM WITH CURRENT PAGE AS 'SEARCH'

	function recordHit(page)
		{

alert('suz');
		// LOCATE THE CGI
		hitsCGI = "http://www.longbeach-recycles.org/cgi/hits04.cgi?";
		if(location.hostname == "127.0.0.1") { hitsCGI = "/cgi/hits04.cgi?"; }
		cgiCall = "<img src='" + hitsCGI + page + "'>";
		eval(document.write(cgiCall));
		// alert(cgiCall);
		}

