function openWin(coll,img_w,img_h)  {

resiz = new String("'resizable=yes,width=" +img_w+ ",height=" +img_h+"'");

 newin = window.open("", "newin",resiz);

 newin.document.writeln("<html><body topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' onblur='close()'><img src='show_image.php?name="+coll+"&width="+img_w+"&height="+img_h+"' width='"+img_w+"' height='"+img_h+"'></body></html>"); 

 newin.document.close()

 newin.focus();

}