function resizeWin()
{
  if (window.innerWidth)
  {
    iWidth = window.innerWidth;
    iHeight = window.innerHeight;
  }
  else
  {
    iWidth = document.documentElement.clientWidth;
    iHeight = document.documentElement.clientHeight;
  }
  
  iWidth = 670 - iWidth;
  iHeight = 840 - iHeight;
  window.resizeBy(iWidth, iHeight);
}
