// cb.jss

var NS=document.all;



function setPageHeight() {
  iWidth = (!NS)?window.innerWidth:document.body.clientWidth;
  iHeight = (!NS)?window.innerHeight:document.body.clientHeight;
  iWidth = document.images[0].width - iWidth;
  iHeight = document.images[0].height - iHeight; 
  document.images['imgPageHeight'].height = Math.abs(iHeight);
}

