Recent Questions
Q: I have built a menu with deluxe menu and I have put everything in the same map but the page doesn't display the drop down menu it says there is an error. Could you look what I do wrong? 
A: It is not correctly to write local paths on your website. They won'twork:
<script type="text/javascript" src="file:///C:/Test%20website%202008/x5/data.js"></script></td>
You should upload your data.js file in the same folder with yourdmenu.js file and write:
<script type="text/javascript" src="data.files/data.js"></script></td>
Q: I have a question 
 How can i insert html code into Tree Menu? 
 Example: I need to put a form, inside of a menu 
A: You are able to paste any html code within items.
So you can paste a form too. 
For example: 
  var tmenuItems = [ 
... 
    ["||<FORM method=GET action='http://www.google.com/custom'><input name='as_q' value='search 
the web' size=15 style='font-size:10'> <INPUT type=hidden name=cof 
 value='LW:144;L:http://domain.edu/images/sulogo.gif;LH:45;AH:center;GL:0;S:http://domain.edu;
AWFID:e01cb67b8afe383e;'></form>","", 
 "images/icons/search.gif", "", "", "", "", "2", "", "", "",], 
Q: I'm looking to make a space between menu buttons in the drop down menu example, 
I checked the FAQ which suggested using ["-"], between items but it didn't work.
A: To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in vertical menu)
  var separatorWidth="100%";
  var separatorHeight="3px";
  var separatorAlignment="right";
  var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu)
  var separatorVWidth="100%";
  var separatorVHeight="2px";
  var separatorPadding="";
You can create separators using menuItems 
(you can do it in Deluxe Tuner, use "Add separator" button), 
for example:
    ["||All Images","gallery_all.html", , , , "_self", , , , ],
    ["||-"],
    ["||Pricing & Ordering Info","gallery_pricing.html", , , ,"_self", , , , ],
Q: From your website, I see that you are able to populate a menu through ASP/VB, but I have not been able to figure out how this is done.
How exactly do you use an ASP script to generate the menu items for the dynamic menu? 
A: You may generate a menu from a database or XML using any server-side script, e.g., PHP, ASP, VB, etc.
However, these scripts don't work inside of Javascript .js files, so, you should move parameters of a menu from a .js file into an html-page, e.g.:
<!-- Deluxe Menu -->
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
<script type="text/javascript">  var dmWorkPath = "menudir/";</script>
<script type="text/javascript" src="menudir/dmenu.js"></script>
<!-- (c) 2006, http://deluxe-menu.com --> 
<script type="text/javascript" language="JavaScript1.2">
 // and describe parameters of a menu
   var parameter1=value1;
   var parameter2=value2;
 etc.
   var menuItems = [
 // here you generate items using server-side scripts (php, asp, vb, etc.)
 ];
</script>
Unfortunately we don't have examples with ASP and SQL.
The example of the menu working with PHP/MYSQL you can find here:
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html