/**
 *  Log searches for report jquery dependency 
 */

function logSearch(searchTerm) {
	
	$.get(
		    "/gogeo-java/logging/logSearch.htm?searchTerm=" + searchTerm
		);
}

function logWhereSearch(minx, maxx, miny, maxy){
	
	$.get(
		    "/gogeo-java/logging/logWhereSearch.htm?searchTerm=any&minx="
			+ minx + "&maxx=" + maxx + "&miny=" + miny + "&maxy=" + maxy  
		);
}
