
function imgPreview(name, ext, iwidth, iheight, dir){
  var img_src = "/content/"+dir+"/"+name+"."+ext;
  var height = iheight+31;
    var win = window.open(img_src,  "", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width="+iwidth+",height="+height+"");
    win.document.open();
    win.document.write(
    '<html><head><title>Просмотр изображения</title></head>'+
    '<body bgcolor="#ffffff" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">'+
    '<div align="center"><img src="'+img_src+'" width="'+iwidth+'" height="'+iheight+'" /></div>'+
    '</body></html>')
    win.document.close()
}