function showImage(title, file_path, file_width, file_height, close_window)
{

var xpos = 0;

   if (self.screen.width)
   {
   xpos = (self.screen.width / 2) - (file_width / 2);
   }

var query  = '?';
query += 'title=' + escape(title);
query += '&';
query += 'file_path=' + escape(file_path);
query += '&';
query += 'file_width=' + escape(file_width);
query += '&';
query += 'file_height=' + escape(file_height);
query += '&';
query += 'close_window=' + escape(close_window);

file_height += 30;

var the_window = window.open('show_image.php' + query,'','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,scrollbars=no,left=' + xpos + ',top=100,screenX=' + xpos + ',screenY=100,width=' + file_width + ',height=' + file_height);

}