﻿function Thumbnail02_PopupImage(szURL, nWidth,nHeight) 
{
  newWindow = window.open('', 'ScreenShot', 'toolbar=no,scrollbars=0,resizable=0,width=' + nWidth + ',height=' + nHeight) ;
  newWindow.document.writeln('<html>') ;
  newWindow.document.writeln('<head>') ;
  newWindow.document.writeln('<title>WinWay Corporation</title>') ;
  newWindow.document.writeln('</head>') ;
  newWindow.document.writeln('<body style="padding:0px;margin:0px;">') ;
  newWindow.document.writeln('<IMG src="' + szURL + '" STYLE="left:0px; height:' + nHeight + '; width:' + nWidth + '; position:absolute; " />') ;
  newWindow.document.writeln('</body>') ;
  newWindow.document.writeln('</html>') ;
  newWindow.document.close() ;
  newWindow.resizeBy(nWidth-newWindow.document.body.clientWidth,nHeight-newWindow.document.body.clientHeight) ;
  newWindow.focus() ;
}
