function co_smallsearch_submit() {
	e=document.getElementById('co_search_small_txt');
	if (!e.touched) e.value='';
	f=document.getElementById('co_search_small');
	f.submit();
}
function co_smallsearch_focus(e) {
	if (!e.touched) {
		e.value='';
		e.touched=true;
	}
}
function co_smallsearch_blur(e) {
	if (e.value=='') {
		e.value='впиши слово';
		e.touched=false;
	}
}
