var used='';

function CheckSearch(f){
   if(f.text.value=='' || f.text.value=='Поиск'){
      alert('Введите строку поиска');
      f.text.focus();
      return false; 
   }
   return true;
}

function ShowMods(m){
  m = document.getElementById(m);
  if(m.style.display=="none"){
     m.style.display="";
  }else{
     m.style.display="none";
  }
}

function SetPointer(f, action, ecl, dcl){
   if(action == "over"){
      if(f.bgColor == ecl) f.bgColor = dcl;
		f.style.border = "1px #d3d3d3 solid";
   }else
   if(action == "out"){
      if(f.bgColor == dcl) f.bgColor = ecl;
		f.style.border = "none";
   }
}


