function imopen(imname, imw, imh)
{
hWnd=window.open("","window","width="+parseInt(imw)+",height="+parseInt(imh)+",resizeable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no");
  hWnd.document.open();
  hWnd.document.write('<html><head><title>'+imname+'</title></head><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><img src='+imname+'></body></html>');
  hWnd.document.close();
  hWnd.focus();
}
