function open_img(img, w,h, title)
  {
//  alert (window.location);      
 if (self.screen) {
   left = screen.width/2 - w/2;
   mtop = screen.height/2 -h/2;
   }
   else
   {
   left = 100;
   mtop = 100;
   }

  myWin=window.open("", "coverbook", 'left='+left+', top='+mtop+', center=yes, toolbar=no,directories=no,status=no,scrollbars=no, resizable=no, menubar=no,width='+w+',height='+h);
  myWin.document.open();
  myWin.document.write('<html><head><title>'+title+'</title><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  myWin.document.write('<a href="javascript: void(0)" onClick="window.close()"><img src="'+img+'" width="'+w+'" height="'+h+'" border="0"></a>');
  myWin.document.write('</body></html>');
  myWin.document.close();

  return false;
  }

function open_img1(id, w,h, has_about)
  {
//  alert (window.location);      
 if (has_about == 'T') h=h+100;
 if (self.screen) {
   left = screen.width/2 - w/2;
   mtop = screen.height/2 -h/2;
   }
   else
   {
   left = 100;
   mtop = 100;
   }
  
  myWin=window.open("photo_"+id+".html", "photo", 'left='+left+', top='+mtop+', center=yes, toolbar=no,directories=no,status=no,scrollbars=no, resizable=no, menubar=no,width='+w+',height='+h);

  return false;
  }
