codice:
if (screen.width < 810) {
  window.location = "pagina_low_res.html";
}
else {
  if (screen.width <= 1024) {
    window.location = "pagina_mid_res.html";
  }
  else { // res > 1024
    window.location = "pagina_high_res.html";
  }
}