var w;
function printImage (img,width,height) {
  img = img.src ? img.src : img;
  if (w && !w.closed){
    w.close();
  }
  w = open ('', 'imagePrint', 
       'menubar=1,locationbar=0,statusbar=0,resizable=1'
       + ',scrollbars=1,width='+width+',height='+height+'\'');
  var html = '<HTML>';
  html += '<BODY ONLOAD="if (window.print) window.print(); setTimeout(\'window.close()\', 10000);">';
  html += '<table><tr><td>';
  html += '<IMG SRC="' + img + '">';
  html += '</td></tr></table>';
  html += '<\/BODY>';
  html += '<\/HTML>';
  w.document.open();
  w.document.write(html);
  w.document.close();
}
