// JavaScript Document

function f_search_valueinput(obj, act, txt) {

	if (act == 'focus' && obj.value == txt) {
		obj.className = '';
		obj.value = '';
	}

	if (act == 'blur' && !obj.value) {
		obj.className = 'title';
		obj.value = txt;
	}

}
