<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; "><DIV><BLOCKQUOTE type="cite">Pardon me asking, but what UA are you targeting with your aplication?<BR></BLOCKQUOTE><DIV><BR class="khtml-block-placeholder"></DIV><DIV>I am developing with safari. Then I will be testing with the other browsers once I get the code somewhat functional.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><BR><BLOCKQUOTE type="cite"> <DIV class="ExternalClass" id="MessageBodyText" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid"><DIV><DIV>&gt;Thanks to John Warner the cursor should be fixed. I was able to do it in CSS.</DIV></DIV> <DIV>No doubt about that, but "cursor: hand" will only do it in Explorer.</DIV></DIV></BLOCKQUOTE><DIV><BR class="khtml-block-placeholder"></DIV><DIV>I got my info from <A href="http://www.echoecho.com/csscursors.htm">http://www.echoecho.com/csscursors.htm</A></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><BLOCKQUOTE type="cite"><DIV class="ExternalClass" id="MessageBodyText" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid"><DIV>Well, that's again one single event per element.</DIV> <DIV>So what does the Icon dblclick do?<BR class="EC_khtml-block-placeholder"></DIV></DIV></BLOCKQUOTE><DIV><BR class="khtml-block-placeholder"></DIV><DIV>Ah, I get it. From the one click I can determine the underlying object. Ok that makes sense.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><BR><BLOCKQUOTE type="cite"><DIV class="ExternalClass" id="MessageBodyText" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid"><DIV></DIV></DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid">&gt;I have the click events working :) , but....  now I need to figure out how to put the icon before the text. </DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid">&gt;Any ideas on how I might do that.<BR></DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid">I first need to see how are you putting your icons currently.</DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid">Seen it, its:</DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid"><FONT color="#ff0000"> <FONT>o.insertBefore</FONT>(newimg);</FONT></DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid"> </DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid">Try:</DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid"><FONT color="#008000">var filelist = <FONT>o.parentNode</FONT>//you can drop this line in IE</FONT><BR class="EC_khtml-block-placeholder"><FONT color="#0000ff"><FONT><FONT>filelist.insertBefore</FONT></FONT>(<FONT>newimg, o</FONT>)</FONT></DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid"> </DIV> <DIV class="ExternalClass" style="BORDER-RIGHT: #fff 1px solid; BORDER-TOP: #fff 1px solid; BORDER-LEFT: #fff 1px solid; BORDER-BOTTOM: #fff 1px solid">This should do it, [!but only in case "o" is what I think it is!]<BR></DIV></BLOCKQUOTE></DIV><BR><DIV>I tried that but it places the image before the div. Here is what I am trying to build programatically:</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>&lt;div class="NOR PRI DIR" id="images"&gt;&lt;/div&gt;</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>to become...</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>&lt;div class="NOR PRI DIR" id="images"&gt;&lt;img src=".../small-dir.gif"&gt;images&lt;/div&gt;</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>I am able to get this...</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>&lt;div class="NOR PRI DIR" id="images"&gt;images&lt;img src=".../small-dir.gif"&gt;&lt;/div&gt;</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>Any other suggestions? As you can see I am able to get the image placed after the div text, but havent figured out how to place it before.</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV>Terry</DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV><DIV><BR class="khtml-block-placeholder"></DIV></BODY></HTML>