// JavaScript Document

function checkSearchString()
{
var text = document.search.search_text;

	if(text.value.indexOf("'") >- 1) {
	text.value = text.value.replace("'", "");

		if(text.value.indexOf("'") >- 1) {
		text.value = text.value.replace("'", "");

			if(text.value.indexOf("'") >- 1) {
			text.value = text.value.replace("'", "");
			}
		}
	}
}

