function img_view(img_path) {

   img1 = new Image();
   // img1.src = "../upload/"+img_path;
   img1.src = img_path;
   width = img1.width+70;
   height = img1.height+50;
  // if (width > 800) width=800;
  // if (height > 600) height=600
   var url = '/include/img_pop.php?img_path=' + img_path;
   win = window.open(url,'img_pop', 'width=' + width + ', height=' + height + ', scrollbars=no, resizable=yes, status=yes');

   win.focus();
}