Recent Questions
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: I have a client that wants a menu bar with all the buttons the same length.
What code might I need to do that
A: You should use individual item styles (you can create it in Deluxe Tuner application). For example: 
  var itemStyles = [ 
 ["itemWidth=110px"], // 0 - number of the style 
  var menuItems = [ 
 ["Home","testlink.html", , , , , "0", , , ], // 0 - style 0 
 ["Product Info","", "default.files/icon1.gif", "default.files/icon1o.gif", , , "0", , , ], // 0 - style 0 
  ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", , , , , , ], 
  ["|Installation","", "default.files/icon2.gif", "default.files/icon2o.gif", , , , , , ], 
......... 
Q: Trialling your menu maker. Was trying to get the tabs dhtml menu bulder working,but it gives me the error "Tabs[...].id is null or not an object" within the program and under IE7, but not under Mozilla Firefox. Obviously the tabs will be used on my website, of which 80-90% of traffic is MS-IE. 
Do you know about this problem, and is there a fix. This will be a major stumbling block against me buying the product if this problem is not fixable. 
A:  Try to set the following dhtml menu bulder parameter:
  var bselectedSmItem=0;
Q: Is it possible to have menu items act like regular hyperlinks?
 For instance in Firefox I like to "middle click" hyperlinks to open them in a new tab, or in IE right click and open in new window. 
However with Deluxe-Menu this does not seem to work.
 
A: If you want to open your links in the new window you should set the item target parameter to "_blank", for example: 
  var menuItems = [ 
 ["Home","testlink.html", , , , "_blank", , , , ], 
... 
You can include also any html code in the Item Text. 
 
For example: 
 ["<a href='http://deluxe-menu.com/'>Home</a>","", , , , , , , , ],