Recent Questions
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 dhtml menu vertical instead of a link? Do you have any samples?
A:  You can use javascript code within menuItems, for example
Write:
["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: When I select something from one of the mouseover menus it takes me to a link on a website,
 is it possible to run a javascript instead?
 
A: Actually you can use your own Javascript code instead standard links and html code inside item text. 
For example:
   var bmenuItems = [
 ["text", "javascript:your_code_here"]
 ]; 
 or
   var bmenuitems = [
 ["<div onClick='urlSubstitution(\'transco/sheet.asp?stype=1\')'>Table of Contents</div>", ""]
 ];
Q: I appreciate your assistance with this problem. I am 98% of the way happy with this product. When I made the changes you suggested, the copyright error went away, however the site no longer validates. It does not like the <noscript> tags. Is there a fix for this?
A: Matt, you can move your <noscript> tag into the <body> tag.
Try that.
Q: When I roll my mouse over my menu, it appears halfway down the page, not next to the menu. This only happens when I enclose the code in <div></div> layers. Is there a way to fix this?
 
A: It is possible that you have some problems with your css. 
 The problem is that the script can't get css properties of the object if they are described in separate .css block (or file).In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style(style="position:absolute"). To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css, for example:
You should add <DIV id=SiteMenu> 
to the 
 style="position:absolute;" 
So, you'll have: 
 <DIV id=SiteMenu style="position:absolute;"> 
Check that.