Recent Questions
Q: How can I keep the javascript contextual menu items from opening into a new window when selected?
A:  You can set target parameter for all javascript contextual menu items:
   var itemTarget="_self";
 or for each item individually:
 ["Home","testlink.html", "", "", "", "_self", "", "", "", "", "", ],
Q: I am able to create the simple navigation bar but can't seem to get it to work in Yahoo SiteBuilder.
A: Deluxe Menu wasn't developed as Yahoo SiteBuilder/Dreamweaver/Frontpage extension
 and wedon't have plug-ins for it.
 
To install the menu into your html page:
1. create and save .js file with your menu parameters in Deluxe Tuner
(you can use "File/Save as/HTML" function).
You can enter any name you like, for example enter "menu". 
So you'llhave menu.html, menu.js files and "menu.files" folder with all menu files.
2. open your .html page in Dreamweaver
3. Copy generated menu.js file and "menu.files/" folder in the same folderwith your index.html page.
4. Open generated menu.html in any text editor and copy several rows of code (<script> tags),
 For info see:http://deluxe-menu.com/installation-info.html
<head>
 <!-- Deluxe Menu -->
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
<script type="text/javascript" src="menu.files/dmenu.js"></script>
</head>
<body>
...
<script type="text/javascript" src="menu.js"></script>
...
</body>
That's all.
Q: I regret having a problem with my setup, and hope you may be able to put me on the right track. After making a few alterations to my menu, and previewing in FrontPage, 
 I get a window with an error message "dmObjectsCheck is undefined". 
A: This error means that you didn't add some engine file for themenu you need. 
Please, try to add all engine files into the folder with your dmenu.jsfile. 
You can also send me a copy of your html page (including .js files)and I will check it. 
Q: I now have the need to introduce separators on the menu. 
 Can you tell me how to do that? 
 I cannot find any documentation telling me how this is done. 
A: Please, see the following parameters: 
//--- Separators 
  var separatorImage=""; //for subitems 
  var separatorWidth="5"; 
  var separatorHeight="100%"; 
  var separatorAlignment="right"; 
  var separatorVImage="images/public/separator.gif"; //for the top items 
  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", , , , , , , , ], 
]; 
Try that.