function popImage(image)
{
  newwindow=window.open(image,'name','height=450,width=400');
  var tmp = newwindow.document;
  tmp.write('<html><head><title>The bigger picture</title>');
  tmp.write('</head><body style="font-family: arial; padding: 0px; margin: 0px; color: #fff; font-weight: bold; text-align: center; background: #009900;"><img src='+image+' alt="bigger picture"');
  tmp.write('<p><a href="javascript:self.close()" style="color: #ffffff; text-decoration: none; font-size: 12px;">close window</a></p>');
  tmp.write('</body></html>');
  tmp.close();
}

