function VF_search_form(){ //v2.3
<!--start_of_saved_settings-->
<!--type,text,name,search,required,true,errMsg,Your&space;search&space;must&space;be&space;4&space;characters&space;or&space;more&stop;-->
<!--end_of_saved_settings-->
	var theForm = document.forms['search_form'];
	var errMsg = "";
	var setfocus = "";
	if (document.getElementById('search_field').value.length < 4){
		errMsg = "Your search must be 4 characters or more\.";
		setfocus = "['search']";
	}
	if (errMsg != ""){
		alert(errMsg);
		eval("theForm" + setfocus + ".focus()");
	}
	else theForm.submit();
}//-->

var helpyou = {
	text:'How can we help you?',
	inactiveColor: '#777777',
	activeColor: '#000000',
	rmText: function(e) {
		e = e || window.event;
		var el = e.target || e.srcElement;
		if(el.value == helpyou.text) {
			el.style.color = helpyou.activeColor;
			el.value = '';
		}
	},
	addText: function (e) {
		e = e || window.event;
		var el = e.target || e.srcElement;
		if(el.value == '') {
			el.style.color = helpyou.inactiveColor;
			el.value = helpyou.text;
		}
	}
}

/*window.onload = function(e) {
	var el = document.getElementById('search_field');
	if(el) {
		el.value = el.value || helpyou.text;
		el.onfocus = helpyou.rmText;
		el.onblur = helpyou.addText;
		if(el.value==helpyou.text) {
			el.style.color = helpyou.inactiveColor;
		}
	}
	load();
}*/

document.observe( "dom:loaded", function() {
	var el = document.getElementById('search_field');
	if(el) {
		el.value = el.value || helpyou.text;
		el.onfocus = helpyou.rmText;
		el.onblur = helpyou.addText;
		if(el.value==helpyou.text) {
			el.style.color = helpyou.inactiveColor;
		}
	}
});