
function getimg(img_id)
{
  var t=window.open('img_id', 
  '_blank',
  'toolbar=no,width=10,height=10,left=0,top=0, status=no,scrollbars=yes,resize=no');
  var s='<body onload="ol()" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><script>function ol(){ '+
  ' var corrx=0; var corry=0; if (window.screen.height-50<=document.images[0].height+30){corry=document.images[0].height+30-window.screen.height+50;} if (window.screen.width<=document.images[0].width+28) {corrx=document.images[0].width+28-window.screen.width;}'+
  'window.resizeTo(document.images[0].width+28-corrx,'+
  'document.images[0].height+30-corry);} '+
  '<'+'/script><img src="'+img_id+'" onload="ol()" onclick="window.close();"  style="cursor: hand; cursor: pointer;"></body>';
  t.document.writeln(s);
}


