Recent Questions
Q: How can I move the dropdown navigation bar to the far right side?
A: You should install the menu into the TABLE with right alignment.
<table cellpadding="0" cellspacing="0" border="0" width="100%">
 <tr>
 <td valign="top" align="right" style=" padding: 0px; margin: 0px; background-color: #14349B;">
 <script type="text/javascript" src="home_files/data-vista-BASEPOINT3.js"></script>
 </td>
 </tr>
</table>
Q: If you take a look at the upper menu, I have "|" separating all of the various menu items. How can I do this with Deluxe Menu? 
 I don't want to resort to using messages and would like to use the "|" character if at all possible. 
A: You can paste a separator. 
Please, see the following parameters: 
//------- Separators ------- 
//--- Separators 
  var separatorImage=""; 
  var separatorWidth="5"; 
  var separatorHeight="100%"; 
  var separatorAlignment="right"; 
  var separatorVImage="images/public/separator.gif"; 
  var separatorVWidth="3"; 
  var separatorVHeight="100%"; 
  var separatorPadding=""; 
You should set a separator in the menuItems, for example: 
  var menuItems = [ 
 ["Home","index.cfm", , , , , , , , ], 
 ["-"], 
 ["About Us","about.cfm", , , , , , , , ], 
];
Q: Could you tell me if this drop down menus javascript work with Japanese fonts? 
A: If you are using a Japanese system then everything should render correctly.
If you are using an English system with a Japanese IME then you willneed to set the font in the Tuner to one that supports the characters you require.
Q: Is it possible to open the dhtml tree to a particular state when a link is chosen from elsewhere in the site (not from a menu link)?
A:  function dtreet_ext_expandItem (itemID, expand) 
Expands/collapses a specified item or a submenu.
itemID - ID property of an item. expand - 0 - expand the item, 1 - show the item. 
For example place to your HTML code
<script>
 dtreet_ext_expandItem('dtree_0i2',0);
</script>
For details please see
http://deluxe-tree.com/functions-info.html