function popWin( url, name, width, height, scroller ) 
   {
   width = width + 6;
   height = height + 40;
   var outStr = 'height=' + height + ',width=' + width;
   if (scroller != 'true') {
   outStr = outStr + ',menubar=no,toolbar=no,location=no,directories=no,status=no,resizable=no,';
       }
       else {
       outStr = outStr +
       ',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no';
       }
       
imageWindow = window.open('', name, outStr);
	   imageWindow.document.open();
	   imageWindow.document.write("<html><head><title>Trend Micro</title><link REL='stylesheet' HREF='./common/css/style1.css' TYPE='text/css'></head>");

	   imageWindow.document.write("<style type='text/css'>@import url('./common/css/style2.css');</style><style type='text/css'><!--body {margin:0;}//--></style>");
	   imageWindow.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' bgcolor='#ffffff'>");
	   imageWindow.document.write("<table cellpadding='0' cellspacing='0' width='100%' height='34'>");
	   imageWindow.document.write("<tr><td align='right' height='33' bgcolor='#e5e5e5'><img src='images/icon-x-white.gif' width='12' height='12'  border='0'> <a href='javascript:self.close();'>Close window</a>&nbsp; &nbsp;</td></tr><tr><td bgcolor='#979797' height='1'><img src='./common/images/px.gif' width='5' height='1'  border='0'></td></tr><tr><td height='3'><img src='./common/images/px.gif' width='5'height='4'  border='0'></td></tr></table>");
	   imageWindow.document.write("<table cellpadding='2' cellspacing='1' width='100%'><tr><td align='center'><img src='");
	   imageWindow.document.write(url);
	   imageWindow.document.write("' alt=''></td></tr></table>");
	   imageWindow.document.write("&nbsp;&nbsp;</body></html>");
	   imageWindow.focus()   
	   imageWindow.document.close();	

}

