function SetSearch(newValue){
	var obj = document.getElementById ('SearchField');
	if (obj) {
		obj.value = newValue;
		obj.focus();
	}	
}