Recent Questions
Q: I am setting a menu up for popupMode=1 and adding the javascript to respond to the onContextMenu action. When it pops up I am having to immediately move the mouse over the menu to keep it visible. Is there any way to keep the menu from doing this?
 
A: You can try to play with these parameters: 
  var smShowPause=200; 
  var smHidePause=1000; 
Q: I have another question regarding the popup window. I need to use an iframe within the popup window. Is there any way I can close the dhtml popup from the page loaded within the iframe? 
A: You can close the popup using the following function:
document.getElementById('win').hide();
Unfortunately it won't work if you use iframe as window content.
You open another page in the popup (in Iframe) so you cannot accessdocument.getElementById('win').hide();
element which is situated on the first page.
When you use text or object_id as window content the content of the popup will be situatedon the same page so you can access document.getElementById('win') element and hide it.
There is a workaround.
Use text as content type and add the following code inside popup:
<a onclick="document.getElementById('win').hide();">...</a> <iframe></iframe>
Your link will work in that case. 
Q: I got the tabs menu to work! 
 Can you tell me which file(s) I must change to change the content of each tab 
 Very many thanks for your help.
 
A: For each tab you can set content <div> (contentName,contentDescription, contentVariations). 
  var bmenuItems = 
[ 
 ["Style Name","contentName",,,,,"1"], 
 ["-",,,,,,"0"], 
 ["Style Description","contentDescription"], 
 ["-",,,,,,"0"], 
 ["Style Variations","contentVariations"], 
 ["-",,,,,,"0"], 
 ["Empty",,,,,,"2"], 
]; 
You can find these divs in the tabs-style-glass.html file. You shouldpaste the content of your tabs in these divs.
Q: Obviously your menus are NOT cross browser usable, as you can e.g. Padding does not work in opera, while it works in IE. 
 When will there be an update on that bug?
 
A: Deluxe Menu works fine in all browsers. 
Try to set exact width for the menu width and menu height, try also to specify unitsin "px": 
  var menuWidth="500px";
  var menuHeight="20px"; 
  var smWidth="116px"; 
You should also check your padding parameter, you should write it so: 
  var itemPadding="1px 1px 1px 12px";