<!--

function CloseWin()
{
    self.close();
}

function OpenScreenShot(page, newWidth, newHeight)
{
   if(newWidth == -1) {
      newWidth = 720;
   }
   if(newHeight == -1) {
      newHeight = 540;
   }
	
   formatString = "width=" + newWidth + ", height=" + newHeight + ", toolbar=no, menubar=no, scrollbars=yes, resizable=no, top=5, left=5";
   newwin = open(page, "newwin", formatString);
}

//->
