var win2 = null;
function popup_img2(s,w,h) {
  var popUpWidth  = w + 40;
  var popUpHeight = h + 40;
  
  if (popUpWidth  > 950) popUpWidth  = 950;
  if (popUpHeight > 700) popUpHeight = 700;
  
  win2 = window.open("","","resizable=yes,scrollbars=yes,width="+popUpWidth+",height="+popUpHeight);
  win2.document.open();
  win2.document.writeln('<html><head><title></title></head>');
  win2.document.writeln('<body leftMargin="0" topMargin="0" marginheight="0" marginwidth="0" bgcolor="#FFFFFF">');
  win2.document.writeln('<table width="100%" height="100%"><tr><td align="center"><img src="'+s+'" width="'+w+'" height="'+h+'" border="0"></td></tr></table>');
  win2.document.writeln('</body></html>');
  win2.document.close();
}

