function openImage (image,width,height) {
  wnd=window.open ('','','height='+height+',width='+width);
  wnd.document.write ('<html><head></head><body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"><img src="'+image+'" width="'+width+'" height="'+height+'"></body></html>');
  wnd.document.close();
}