  function getScreenSize(){
		var q = document.getElementById("conteiner");
        if(screen.width > 1024) {
            q.style.width = 1260 + 'px';
            q.style.margin = '0px auto';
        } else {
            q.style.width = 1006 + 'px';
        }
  }
