Index: contrib/emimage/emimage.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emimage/Attic/emimage.module,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 emimage.module
--- contrib/emimage/emimage.module	16 Dec 2008 16:27:58 -0000	1.1.2.7
+++ contrib/emimage/emimage.module	19 Feb 2009 18:24:23 -0000
@@ -280,7 +280,11 @@
 
 function emimage_widget(&$form, &$form_state, $field, $items, $delta = 0) {
   if (module_hook('emfield', 'emfield_widget')) {
-    return emfield_emfield_widget($form, $form_state, $field, $items, $delta, 'emimage');
+    $tree = emfield_emfield_widget($form, $form_state, $field, $items, $delta, 'emimage');
+    
+    $tree['embed']['#suffix'] = '<a href="javascript:return(0);" onclick="window.open( \'?q=imagebrowser/view/browser&app=emimage&widget='. urlencode($field['field_name']) .'\', \'FCKBrowseWindow\', \'width=680,height=439\' )">Browse</a>';
+    
+    return $tree;
   }
 }
 
Index: contrib/emimage/emimage.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emimage/Attic/emimage.theme.inc,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 emimage.theme.inc
--- contrib/emimage/emimage.theme.inc	14 Sep 2008 20:07:59 -0000	1.1.2.1
+++ contrib/emimage/emimage.theme.inc	23 Feb 2009 15:36:53 -0000
@@ -4,12 +4,12 @@
 function theme_emimage_image($field, $item, $formatter, $node, $code, $width, $height, $title = '', $link = NULL) {
   $url = module_invoke('emfield', 'include_invoke', 'emimage', $item['provider'], 'image_url', $code, $width, $height, $formatter, $field, $item, $node);
   $attributes = array();
-  if ($width) {
+  /*if ($width) {
     $attributes['width'] = $width;
   }
   if ($height) {
     $attributes['height'] = $height;
-  }
+  }*/
   if ($item['class']){
       $attributes['class'] = $item['class'];
   }
