
function event_onclick( type )
{var searchinput = document.getElementById('search_word');if( searchinput.value == '' && type)
{searchinput.value = 'Поиск...';}
else if( searchinput.value == 'Поиск...' && !type )
{searchinput.value = '';} }
function event_SubmitClick( search_form )
{var f = document.getElementById( search_form );f.submit();}

