function search(){
ss = document.web.sea_key.value
str = "/search_in_shops?string=" + ss
location.href = str;
}

function swapImages(img, fileSm, fileLg, widthSm, widthLg) {
  if (img.src.indexOf('/small/') > 0) {
    var IbDiv = document.getElementById("ImageBreak");
    if (IbDiv) {
      if (getWindowWidth() < 900) { 
        IbDiv.style.display = 'inline';
      } else {
        IbDiv.style.display = 'none';
      };          
    };
    img.src = fileLg;
    img.width = widthLg;
  } else {
    var IbDiv = document.getElementById("ImageBreak");
    if (IbDiv) IbDiv.style.display = 'none';
    img.src = fileSm;
    img.width = widthSm;
  };
  return false;
};