Recent Questions
Q: I evaluated Deluxe Menu over the weekend and I really like it. I believe I'll be buying it this week. I have one question. Is it possible for the menu to be aware of what page you have selected and highlight the corresponding menu item on that page.
 
A: You should set a pressed item using Javascript API: 
 
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
Sets a current pressed item. 
menuInd - index of a menu on a page, >= 0. 
submenuInd - index of a submenu, >= 0. 
itemInd - index of an item, >=0. 
recursion = true/false - highlight parent items. 
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. 
You can't get this ID after you reload your page. That is why you should write your own code on PHP. 
Q: I am trying to evaluate the trial version of deluxepopup window.
 The script popup works great but I am having a specific requirement of making it amodal window; i.e. when the popup is opened, users shouldn't be allowed to access the main page. Please let me know how to make this happen.
 Appreciate your quick response on this. 
A:  Unfortunately it is not possible to create modal window using Deluxe Popup Window.It doesn't have such a feature now.
We'll try to add this feature in the next versions.
Q: I want to have the dhtml popup display as you mouse over an image - is this possible?
A:  Yes you can do it. Use smOrientation parameter in Individual Submenu Styles:
   var menuStyles = [
 ["smOrientation=0"], //id=0
];
Assign it to the first item in third submenu:
 ["Home","testlink.html", "", "", "", "", "", "", "", "", "", ],
 ["Product Info","", "default.files/icon1.gif", "default.files/icon1o.gif", "", "", "", "", "", "", "", ],
  ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "", "", "", "", "", ],
  ["|Installation","", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "", "", "", "", "", ],
    ["||Description of Files","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", "", "", "", "0", "", "", "", ],
Q: Things are mostly working great. I want my menu to appear centered at the top the page. Here's the code: 
 <table style="text-align: left; width: 100%;" border="0" cellpadding="2"cellspacing="2"> 
 <tbody> 
 <tr> 
 <td style="width: 100%; text-align: center;"><script type="text/javascript" src="navbar.js"></script> 
 </td> 
 </tr> 
 </tbody> 
 </table> 
 The table appears at the far left edge of the window. I tried with both absolute (x=20, y=10) and relative (both x and y unset) coordinates. Help!
 
A: If you want to center the menu paste itwithin the <div > or <table> with a static position and specify a center alignment for it, for example: 
 <DIV align=center> 
 <SCRIPT src="data/data.js" type=text/javascript> 
 </SCRIPT> 
 </DIV> 
 <table width=800> 
 <tr> 
 <td align=center width=600> </tr> 
 </table> 
Please, set exact value for   var menuWidth parameter, for example: 
  var menuWidth = "600px"; 
This can help to align your menu correctly in all browsers. 
Try also to specify units in "px". 
Set also: 
  var absolutePos = 0;