function oz_trims(stringToTrim) {
	return stringToTrim.replace(/^\s+|\s+$/g,"");
}
function oz_searchfocus(obj,_addcFocus) {
	var buffer = obj.value;
	//alert(eid +"  "+_addcFocus);
	if (oz_trims(buffer) == "") {
		var buffer = "Search Key Word";
	}
	if ((_addcFocus == 'true') && ((obj.value == "") || (obj.value == "Search Key Word"))) {
	    obj.value = "";
	}
	if (_addcFocus == 'false' && obj.value == "") {
	    obj.value = "Search Key Word";
	}
}
