Recent Questions
Q: When using javascript pop window is it possible to gray out the page except pop up so users can't use any controls until they close pop up window?
A: Try to set that parameter:
modal:1, Q: I'm trying to disable a javascript mouse over menu item using the MS Office style 2 template and having no luck. Can you please provide me a sample of the MS Office style 2 template that will disable an item on the menu by graying it out? 
A:  To disable menu item you should set "_" target for it.
If you want that your disabled items have a grey color (in css-basedmenu) you should create additional style for it and assign this stylefor the disabled items:
 ["CSSText=toptext_dis,toptext_dis"], 
 .toptext_dis
{
 font: normal 11px Tahoma, Arial;
 color: #AAAAAA;
 padding: 3px;
} 
  ["|What's New","", "images/icon_office_note.gif", "images/icon_office_note2.gif", ,"_","1", , , ],
    ["||Popup Mode (Contextual Menus)","", "images/icon_office_mark.gif", "images/icon_office_mark.gif", ,"_","1", , , ],
You can find more info about menu items here:
http://deluxe-menu.com/menu-items-info.html
Q: I now have a tree on the left and an embedded frame on the right. When a user clicks a node, the corresponding html page appears in the frame. 
 Is there a method I can use when a user clicks a node, the web page will jump to a certain location in the page (menu dhtml hhyperlink)? I'm envisioning using one long web page instead of 30 or 40 separate pages. But I would need the program to work with a hyperlink to know where to jump to. 
A: See the structure of tmenuItems array:
  var tmenuItems = [
[text, link, iconNormal, iconOver, iconExpanded, tip, target, itemStyleInd, itemXPStyleInd, jsFilename],
You can set link and target menu dhtml parameters for each item individually,for example:
  var tmenuItems = [
["Home","files/homepage.html","","","","Home","topframe","","",""],
["Contacts","files/contacts.html","","","","Contacts","bottomframe","","",""],
You can also send us the example, so we can understand your problem.
Q: I test your free menu before buy but I have a question. 
 Is it possible to integrate a font in the dhtml menu creator which was not on the internaute system ? 
 I want to customize my menu with change the font, but this font is not on the system with default. 
 How link my menu with a new font?
A:  If you want to use unusual font for your menu you should create imagesfor each item with text and use it in your menu.
Actually you can choose any font installed on your computer in the dhtml menu creator, but this font won't work on your website.