if (window.outerWidth < 800 || window.outerHeight < 600)
  {
  window.resizeTo(800,600);
  window.moveTo(0,0);
  }

function PopupPic(sPicURL)
  {
  PictureWindow = window.open( "popup.html?"+sPicURL, "Picture","resizable=1,HEIGHT=200,WIDTH=200");
  PictureWindow.focus();
  }

function popWindow(content)
  {
  newWindow = window.open(content,'Statement','scrollbars=yes,width=500,height=400');
  newWindow.focus();
  }
