Index: imceimage.module
===================================================================
--- imceimage.module	(revision 542)
+++ imceimage.module	(working copy)
@@ -250,10 +250,9 @@
 function theme_imceimage_image($s, $w='', $h='', $a='', $id='') {
     $s = 'src="'. $s .'" ';
     $a = 'alt="'. $a .'" ';
-    $id = !empty($id)? 'id="'. $id .'" ':'';
     $w = !empty($w)? 'width="'. $w .'" ':'';
     $h = !empty($h)? 'height="'. $h .'" ':'';
-    return '<img '. $s . $a . $w . $h . $id .'/>';
+    return '<img '. $s . $a . $w . $h .'/>';
 }
 
 
