function executeSearch(){
	myForm = document.searchForm;
	searchString = myForm.searchString.value;
	formAction = 'http://www.lovecraftsexshop.com/webstore.taf?';

	testString = searchString.replace(' ', '');
	stringLength = testString.length;
	if(stringLength  > 2){
		formAction = formAction + 'string=' + searchString;
		window.location = formAction;
	}

}
