Recent Questions
Q: I am trying to install a search engine on my site and am having trouble due to my use of your tree-menu system, which I love by the way.  I really need to find a compatible script that will search your javascript menu system, or at the very least search another file with mirrored links.  I DO NOT want to add the links to each page, this is why I love your menu's, there is one central location to change navigation statewide.
 Do you know if there is a search script that can do this( js, php) or is there a way to make your javascript tree menus accessible to the search engine? 
 
A: You can generate search engine friendly code.
 Deluxe Tree is a search engine friendly menu since v2.4.
To create a search engine friendly menu you should add additional html code within your html page:
<div id="dmlinks"> 
<a href="http://deluxe-menu.com">menu_item_text1</a> 
<a href="http://deluxe-tree.com">menu_item_text2</a> 
...etc. 
</div> 
To generate such a code use Deluxe Tuner application.
You can find this GUI in the trial package. 
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3).
Q: We are using the javascript drop down menu code to create an external link. The absolute path is recognised but it does not work. At the bottom of the page the browser displays an "error on page" message and nothing happens.
A: Now you have
 <script type="text/javascript">  var dmWorkPath = "wdmenu.files/";</script>
 <script type="text/javascript" src="wdmenu.files/dmenu.js"></script>
 <script type="text/javascript">  var dmWorkPath="wdtabs.files/";</script>
 <script type="text/javascript" src="wdtabs.files/wdtabs.js"></script>
The second call for dmWorkPath is incorrect. Delete it. So you'llhave:
 <script type="text/javascript">  var dmWorkPath = "wdmenu.files/";</script>
 <script type="text/javascript" src="wdmenu.files/dmenu.js"></script>
 <script type="text/javascript" src="wdtabs.files/wdtabs.js"></script>
Your menu will work correctly.
Q: Now I experiences a problem with the Danish letters in dhtml menue.
I have changed the letters in the scriptfile - but this does not work.
Have we a problem with Danish letters?
A: Please, check that you've set "Tools/Use utf8 encode".
Notice that you should have UTF8 charset on your page too:
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
You can also use another charset on your html page and open your data file in text editor, 
enter thissymbols and save data file in the way you save your html page.
Notice that you should turn off "Tools/Use utf8 encode" setting in
order to open your data file correctly in Deluxe Tuner.
Q: How can make my html vertical tabs to open internet link in the same window?
 
A: You should set the following paramter in your data.js file (file, created in Deluxe Tuner),
where your tab-menu parameters (vars) and items (  var bmenuItems) are placed.
  var bitemTarget = "_blank"; 
Default target for all items ("_self","_blank","_parent","_top",...). 
If equal to "" - defined as "_self". 
Or you can set target parameter in your data file using Deluxe Tuner:
"Tab mode" section in the menu parameters list.