Recent Questions
Q: Shall I have to call the main egine file of the javascript menu maker - dmenu.js twice if I want to install two menus on the page.
 The second script:
 <script type="text/javascript" src="datatopnav.files/dmenu.js"></script>
 Is for the top navigation menu, the datahscounseling is for the side menu. If I delete that line won't my top navigation be gone? 
A:  No, when you have several menus on the same page you should calldmenu.js file only once and then call several data files.
You should install the menus in the following way:
<head>
...
 <noscript><a href=http://deluxe-menu.com/>Javascript Menu Maker by Deluxe-Menu.com</a></noscript>
 <script type="text/javascript">  var dmWorkPath = "datahscounseling.files/";</script>
 <script type="text/javascript" src="datahscounseling.files/dmenu.js"></script>
 <script type="text/javascript" src="datatopnav.files/dmenu.js"></script>
 <!-- (c) 2007, http://deluxe-menu.com -->
...
</head>
<body>
...
 <TD height=25 colSpan=3 class=style1>
 <script type="text/javascript" src="datatopnav.js"></script></TD>
...
 <td width="180" height="307" rowspan="2" valign="top" bgcolor="ffffff"><div align="left">
 <script type="text/javascript" src="datahscounseling.js"></script></DIV>
...
</body>
Both menu will work correctly in that case.
See the example I've sent you. It works fine.
You can find more info about installation of several menus on thesingle page:
http://deluxe-menu.com/installation-info.htmlQ: Can I ask a technical question? I am using the menu in a frameset, and I would like for the drop down menu selected branch to sty highlighted after the user moves the mouse to another window (where the menu brings up a new page), just so the user knows where he/she is. Is that possible? 
A: 	But if you open links in the another frame (window) the initial frame with your menu isnot reloaded, so the clicked item will be highlighted.
You should set the following parameters:
  var ttoggleMode=1;
  var tpressedFontColor="#AAAAAA";
You can also set the following parameter to save menu state:
  var tsaveState=1;
  var tsavePrefix="menu1";
If you install the menu without frames. On your pages you should call the following function/functions to expand/highlight items, for example:
<script>
dtreet_ext_expandItem (dtreet_ext_getItemIDByIndex (0, 0), 1);
dtreet_ext_setPressedItem (0, dtreet_ext_getItemIDByIndex (0, 1));
</script>
See more info about API functions here:
http://www.deluxe-tree.com/functions-info.html
Example:
http://deluxe-tree.com/highlight-selected-menu-item-sample.htmlQ: Where do I find the API reference that is associated with pop up windows. Specifically, the method documentation that references the window pointer returned by deluxePopupWindow.make? 
A: 	You can find all info on our website:
http://deluxepopupwindow.com/window-installation-info.htmlQ: I'm trying to display the submenus to the left of the menu. I searched your questions and found one that said to use the following:
  var smViewType=2;
I added this but it didn't do anything.
A: Try to use this parameter:
  var subMenuAlign = "left";