Recent Questions
Q: Ok, please disregard my previous email, it was IE 8! I went back to IE 7 and everything is fine.
 I do however got requests to speed up the javascript treeview action (of my 2 out of 2 customers thus far on your menus).
 Is there a setting to make it go faster? 
A:    var tXPIterations=5;
You can also try to use AJAX feature. It will increase the loading speed.
Q: How do I set just one drop down menu hyperlink to open in a new window when the rest is set to _self?
A: You can set item's target for each item individually:
 ["Home","testlink.htm", "default.files/icon1_s.gif", "default.files/icon1_so.gif", "", "Home Page Tip", "_blank", "", "", "", ],
Q: We currentlly have a menu that uses standard html hyperlinks to open a new window with _blank as the target. Unfortunately, the size of the window is controlled by the browser and we want to be able to control it. The only way that we know how to do that is to use the window.open client-side function and pass the window's dimensions. Here is a sample of the code that would do that: 
 window.open("url","_blank","height=1024,width=768,status=yes,toolbar=no,menubar=no,location=no"); 
 How can we add the javascript code to the down menus css instead of a link? Do you have any samples?
 
A:  You can use javascript code within menuItems, for example 
["Test Window","javascript:window.open('http://www.microsoft.com','_blank','height=1024,width=768,status=yes,toolbar=no,menubar=no,location=no');", , ,'Monitor Exceptions' , ,'0', '0',,],
Q: I was trying out the Vista samples and was able to change the sub-item font size but not the cascade menu javascript item(s) font size. Is this by design?
 
A:  You should change font for the main items in the Individual Styles.
  var itemStyles = [ 
 ["itemWidth=92px","itemBorderWidth=0","fontStyle=normal 11pxTahoma","fontColor=#FFFFFF,#FFFFFF","itemBackImage=data-vista-03.files/btn_magentablack.gif,data-vista-03.files/btn_magenta.gif"], 
]; 
Try that.