// JavaScript Document
function Display(){
var x = screen.height
  if (x==768){
    document.all.div1.style.height = "310";
  }
  if (x<768){
    document.all.div1.style.height = "230";
  }
  if (x>768){
    document.all.div1.style.height = "550";
  }
}