So, I have tried to use this ondblclick-function on this string:
<div style="position: absolute; left: 30px; top: 100px; width: 24px; height: 24px; z-index: 76; cursor: move;" id="Icon"><img height="35" width="35" src="Icon/user_black.png" name="Ico1"/></div>
I need to add javascript ondblclick-function to that string, and the doubleclick must open a window to another html-site on my pc.
The reason I need to put that function there is, because of this:
<script type="text/javascript">
SET_DHTML("Ico1", "Ico2", "Ico3", "Ico4", "Ico5", "Ico6");
</script>
that set_dhtml - thing says where it puts one of my scripts i have in one folder (the script allows visitor of the site to move and resize pictures).
And currently, there reads "Ico1", and that Ico1 is located on that Div-string.
So, where should i stuff that ondblclick-function, and what is the code to open another html-site located on same folder?