*** window_insert.tpl.php 31:

added ':' to the end of the captions to make the labels easier to understand, surrounded in spans to easily retrieve values with js
Result:

      <tr>
        <th><?php print t('Title'); ?>:</th>
        <td><span id="ib_title"><?php print $title; ?></span></td>
      </tr>
      <tr>
        <th><?php print t('Dimensions'); ?>:</th>
        <td><span id="ib_width"><?php print $image_width; ?></span> x <span id="ib_height"><?php print $image_height; ?></span> px</td>
      </tr>
      <tr>
        <th><?php print t('Mime type'); ?>:</th>
        <td><span id="ib_mime"><?php print $image_mime_type; ?></span></td>
      </tr>
      <tr>
        <th><?php print t('Owner'); ?>:</th>
        <td><?php print $username; ?></td>
      </tr>

*** imagebrowser.js 61,72-74, 76

drag the alt (title), width and height from the spans, and send them to SelectFile()

deleted:
	alt = 'ImageBrowser image';
added:
	var alt = $('#ib_title').html();
	var width = $('#ib_width').html();
	var height = $('#ib_height').html();
modified:
	SelectFile(url, width, height, alt, link, link_target, styles);
	
17:
send the correct parameters

modified:
	window.opener.SetUrl( url, width, height, alt );
