function resizePage(){
      o=document.getElementById("mm");
      o.style.width='100%';
      if (o.offsetWidth>1600) o.style.width='1600px';
      if (o.offsetWidth<780) o.style.width='780px';
}
onload=resizePage;
onresize=resizePage;