function modifyKeywords (f)
{
	//Here we add "+"s to the front of all words entered by the user plus strip out any "and"s and commas:
	var kw = f.val_26_1.value;
	var orig = kw;

	kw = kw.replace(" and", "");
	kw = kw.replace(", ", " ");
	// This adds a "+" in front of each search term keyword, which is no longer necessary. Therefore it's been commented-out. TPM: latchd01 | Date: 2008-11-04//      tims - don't
	// kw = kw.replace(/\b(\w)/g, "+$1");

	f.val_26_1.value = kw;
	f.orig_kw.value = orig;

	return true;
}

function initForm()
{
	var f;
	if (f = document.forms.searchform) {       
		f.val_26_1.value = f.orig_kw.value;
	}
}

//bbcjs.addOnLoadItem('document.forms.searchform.reset();');
bbcjs.addOnLoadItem(initForm);