Recent Questions
Q: Actually I think we've managed to figure most of the below out, so I'd be grateful if you could give us some pointers with the following instead... 
How might we be able to include your javascript menu scripts within e.g. asp tags? We'd like some menu options to be hidden from some users, but I'm getting errors when I put asp tags in your data.js file. 
A: It seems to me that you have syntactical error in your code.
Please, check that you don't have double quotes in your code. If you have several quotes you shoulduse back slashes before them, for example:
<%
response.Write( " ['|Test A','javascript:alert(\'Test\');', '', '', '', '', '0', '-1', '', ], " )
%>
 ["|Loan Profile","../pipeline/loan_profile.asp?id=<%=rsLoans('loan_id')%>", "", "","", "", "", "2"],
Q: How I make sure, that long menu items in dhtml menu sample can wrap into two lines? 
 
A: You should set the following parameter:
  var noWrap=0;
Or use standard <br> tags inside item's text:
 ["International Music X Home<br>Decoration X Books","", "", "", "", "", "0", "0", "", "", "", ],Q: Can the main menu items be set so they are all the same width without specifying pixel widths?
 
A: You should create Individual Style and assign this style for allitems. 
  var itemStyles = [ 
 ["itemWidth=150"], //style 0 
]; 
  var menuItems = [ 
 ["DHTML Menus","", "images/icon1.gif", "images/icon1o.gif", , ,"0", , , , , ], // assign style 0 
 ["Apycom products","", "images/icon1.gif", "images/icon1o.gif", , , "0", , , , , ], // assign style 0 
 ["Contacts","http://www.apycom.com/contact.html", "images/icon1.gif", "images/icon1o.gif", , , "0", , , , , ], // assign style 0 
];
Q: How do I turn off transitional effects of my java swing right click menu?
A: You should set the following java swing right click menu parameters.
  var transition=-1;
  var transOptions="";
  var transDuration=0;  var transOptions="";
  var transDuration2=0;