﻿
function CleanSearchText(searchText)
{
	// alter search text before submission
	
	// replace quotes in the search string that may have been copy/pasted, with normal quotes
	var cleanText = searchText.replace(/“|”/g, '"');
							  
	return cleanText;
}