
function buildSearch(x,y,z,sLayer) {
  if (!document.getElementById) return;
   obj=document.getElementById(sLayer);
   obj.style.left = x;
   obj.style.top = parseInt(obj.style.top) + y;
   obj.style.zIndex=parseInt(obj.style.zIndex) + z;
   
}

