function show(img)
{
 if (img == "") { return false; }
 var a=window.open("", '_blank', 'scrollbars=yes')
 a.document.write("<HTML>"+"<head><title></title>"+
 "<script>function set_params(obj) { window.resizeTo(obj.width+10,obj.height+3);}<"+"/script"+">"+
 "<"+"/head><BODY style=\'margin:0px;padding:0px;\'><img src="+img+" onload=\"set_params(this)\" onclick=\"window.close();\"><"+"/BODY><"+"/HTML>");
 a.focus();
 return;
}
