var srh_inp=document.fsr.tx;
var def_str='Поиск по сайту...';
srh_inp.onfocus=function(){
if ( this.value == def_str ) { this.value = '';}
}
srh_inp.onblur=function(){
if ( this.value == '' ) { this.value = def_str;}
}
document.fsr.onsubmit= function(){
if (( this.tx.value == '' )||( this.tx.value == def_str )){return false;}
else {return true;}
}
