Recent Questions
Q: I am using the deluxe menu in a cross frame set-up. The sub menu's are to be in the 'MAIN' frame. All works great until I have a php file loaded into the MAIN frame.. the sub menus will load in the parent frame.. where the main drop down menu is.. 
 Click skip intro or wait for the site to appear… you will see the menu down the left side… if you click the second button down you will load a php blog page into the MAIN frame… then hover over the third button down and you will see the problem with the sub menu.. it works fine when other pages are loaded (click Home and then hover over the screenplay button again. 
 Everything is local (the blog is loaded and running for our server account) 
A:  Your menu is situated in http://www.domain.com domain andthis content is situated in http://domain.com domain(without www).
Try to use the same domains for the menu and your content.
Q: Well I figured all of that out but now I have a new problem.The content of the textarea tabs is not displaying in IE. 
A: 	See, it is not correctly to use submenus in tabMode=0.
Now you have:
  var bmenuItems = [
 ["Why Choose Frictionsweb?","content1", "", "", "", "Why choose Frictionsweb Premium Internet Services?", "", "", "", ],
  ["|Our Services","content2", "", "", "", "We handle your project from the ground up!", "", "", "", ],
];
  var bmenuItems = [
 ["Specials","content3", "", "", "", "Great Deals from Frictionsweb!", "", "", "", ],
  ["|Our Services","content4", "", "", "", "We handle your project from the ground up!", "", "", "", ],
 ["-","", "", "", "", "", "", "", "", ],
];
Try to write your bmenuItems in the following way:
  var bmenuItems = [
 ["Why Choose Frictionsweb?","content1", "", "", "", "Why choose Frictionsweb Premium Internet Services?", "", "", "", ],
 ["Our Services","content2", "", "", "", "We handle your project from the ground up!", "", "", "", ],
];
  var bmenuItems = [
 ["Specials","content3", "", "", "", "Great Deals from Frictionsweb!", "", "", "", ],
 ["Our Services","content4", "", "", "", "We handle your project from the ground up!", "", "", "", ],
 ["-","", "", "", "", "", "", "", "", ],
];
Q: I do not know how to prevent IE7 or IE8 displaying a security warning for the javascript dropdown menuI have created using your software. I get the warning message when I view the menu that I have created.
A:  Try to set the following options in Internet Explorer:
1) Go to 'Tools -> Internet Options -> Security'
2) Select Local Intranet and then press 'Custom level...' button.
3) Run ActiveX Controls and plug-ins = Enable
 Automated Prompting for ActiveX Controls = Disable
Q: I'm testing the trial version and I'm having a little problem with the state saving. Everytime it navigates to another page, it does not save the state, even with 
  var tsaveState=1; 
 In fact, it actually opens up a different menu other than the one I originally clicked.
 
A: See, if you open pages (with menus) from different folder it means that you open different menus. So, when you change a state, for example, of the first menu within "newzap/" folder and then open another page with the menu within "newzap/learn/", browsers looks for another cookie file and can't find it and the second menu stays in a default state. 
 Try to set different 
  var tsavePrefix="menu1"; 
  var tsavePrefix="menu2"; 
  var tsavePrefix="menu3"; 
for different menus. 
That should work.