Recent Questions
Q: I am trying to update a website using a deluxe-menu, but I do not understand the instructions for inserting it into a framed site. I have everything working, and the menu is on the page. I just cannot figure out how to make the submenus appear in another frame. 
 The website makes it sound like I need to alter the data.js file, but I do not have any programs on my computer that will allow me to do so.
 
A:  You can open your data.js file in any text editor and add such linedm_initFrame("frmSet", 0, 1, 0); instead of dm_init(); 
More info you can find here: 
http://deluxe-menu.com/cross-frame-mode-sample.html 
Q: How can I use Danish characters in my dhtml menu bars?
A: You should turn on "Tools/Use utf8 encode" property.
In that case your data file will be saved in UTF-8 encode. So, you
should set UTF-8 encode on your page too
<meta http-equiv="Content-Type" content="text/html"charset="UTF-8">
If you don't want to use UTF-8 encode on your page you should turn off
"Tools/Use utf8 encode" property, save your data file and manually
change your letters in any text editor.
Q: I still am having no luck with Firefox showing an Incorrect Copyright nag (Again, just Firefox for Mac; no problem with other browsers.)
 Also, I am still requiring a long delay to keep the pop-up window open from loading as the page loads. Script reads: 
deluxePopupWindow.attachToEvent(win,'openAfter=,,onClick=Image2,,,') }, 'load') 
A:  Delete 'openAfter=' at all from deluxePopupWindow.attachToEventfunction (in all files):
 deluxePopupWindow.attachToEvent(win,',,onClick=Image2,,,')
 deluxePopupWindow.attachToEvent(win,',,onClick=Image21,,,')
 deluxePopupWindow.attachToEvent(win,',,onClick=Image22,,,')
 deluxePopupWindow.attachToEvent(win,',,onClick=Image23,,,')
 deluxePopupWindow.attachToEvent(win,',,onClick=Image24,,,')
In that case popup windows won't show till you click on the images.
You should write NOSCRIPT tag in the following way:
 <noscript><a href="http://deluxepopupwindow.com">menu drop down by DeluxePopupWindow.com</a></noscript>
I've just checked it. There is no nag message in Firefox in that case.But notice that you won't have nag message on your website only. On alocal machine you'll have nag message.
Q: Hello. I have noticed that when you expand a menu and then click to another page, the menu is collapsed on the next page. I read about "state saving" and tried the parameter which did not work. Is there a way to accomplish this?
 
A: You can see the example for state saving here: 
http://dhtml-menu.com/tree-examples/tree-menuxp-save-state.html
This menu saves its state. 
To enable this mode you should include dtree_ss.js file intoyour html page and set the following parameter: 
   var tsaveState = 1; 
See, if you open pages (with menus) from different folder itmeans that you open different menus. So, when you change a state, forexample, of the first menu within "content/" folder and then openanother page with the menu within "content/subfolder/", browsers looks for anothercookie file and can't find it and the second menu stays in a defaultstate. Is it clear?