Recent Questions
Q: How can I add a submenu to the parent javascript menu horizontal? 
A:  You should add '|' symbols before item's text.
 ["Samples","", "", "", "", "", "", "", "", "", "", ],
  ["|Sample 1","testlink.htm", "", "", "", "", "", "", "", "", "", ],
  ["|Sample 2","testlink.htm", "", "", "", "", "", "", "", "", "", ],
    ["||Sample 2","testlink.htm", "", "", "", "", "", "", "", "", "", ],
Actually you can create your menu easily in Deluxe Tuner GUI tool.
Q: The only remaining problem I see is that the html popup menu appears in slightly different positions depending upon where your mouse touches the icon.
 Is there a way to make the menu position absolute in respect to the icon? I have tried playing with the menu item parameters that seemed related with no success. 
A: 		See dm_popup() function parameters:
return dm_popup(menuInd, pause, event, x, y)
menuInd - index of the menu on a page, >= 0.
pause - determines the time when the html popup menu will be hidden.
event - constant. Do not change.
x, y - optional. Set these parameters if you want the menu to appear in the specified place.
In other case the menu will be shown in the mouse position.
Q: I'm having a major problem centering html menu navigation in a table.
No matter what I try, the menu stays on the left ofthe table.
 Do you have any suggestions? 
 
A: To center the menu on your html page you should set the following
parameter and install the menu in the following way:
  var absolutePos=0;
<div align=center>
<script type="text/javascript" src="deluxe-menu/dmenu.js"></script>
</div>
<table width=800>
<tr>
<td align=center width=600><script type="text/javascript" src="data/data.js"></script></td>
</tr>
</table>
Q: Is it possible for the dhtml navigation to stay within a table for placement (in order to have a centered website content optimized for 1024x768 - and always have the content centered in the browser regardless of larger resolution sizes, etc.)? so the horizontal placement may vary but the vertical placement would remain the same. 
I'm sure it is - but have not had success on implementing it. 
A:  You can place a menu in a TABLE or DIV with aligh="center".