Recent Questions
Q: I am evaluating various menu systems and need to know if your supports key navigation, like alt-F to select a menu?
 
A:  Deluxe Menu has keystrokes support.
Use the following parameter to enable keystrokes support: 
  var keystrokes = 1; 
0 - disabled (default), 1 - enabled. 
Ctrl+F2 - enter the menu/switch to next menu on the page. 
Arrow keys - navigate. 
Enter - enter the menu. 
Esc - exit the menu. 
Use also the following parameters: 
  var dm_focus = 1; Show focus selection for selected item. 
  var dm_actKey = 113; Key code for keystrokes activation. 
Works with Ctrl key only. 
Default value is 113 = F2 key, 114 = F3 key, 115 = F4 key, etc. 
Please, try the trial version, http://deluxe-menu.com
Q: I am trying to make the tab menu to work correctly and after extensive testing and I have come across a problem that I can seem to get resolved. I am using images for the tab menu with no text and <divs> to display information about each javascript new menu tab. However while the page loads I can see all the content from all the <div> javascript new menu tabs and when the page if fully loaded, the web page then displays the content correctly with all the content hidden until the correct tab is selected. Mind you this is the only thing on the webpage so there shouldn’t be any load time problems. 
 Please advice what is happen to resolve this issue. 
A: Try to set display: none; property for the style of your DIV, forexample:
 <div id="content1" style="display: none;" class="tabPage">
 <br><br><br>
 <p align=center><img src="../image/img/logo_DM.gif" width=262 height=56 alt="Deluxe-Menu.com"></p>
 </div>
 <div id="content2" style="display: none;" class="tabPage">
 <br><br><br>
 <p align=center><img src="../image/img/logo_DT.gif" width=262 height=56 alt="Deluxe-Tree.com"></p>
 </div>
Q: I have another question regarding the popup window. I need to use an iframe within the popup window. Is there any way I can close the onmouseover popup from the page loaded within the iframe? Something like "parent.document.getElementById('windowid').hide();". Any help would be appreciated. 
A:  You can close the onmouseover popup using the following function:document.getElementById('win').hide();
Unfortunately it won't work if you use iframe as window content.
You open another page in the popup (in Iframe) so you cannot accessdocument.getElementById('win').hide();
element which is situated on the first page.
When you use text or object_id as window content the content of the popup will be situatedon the same page so you can access document.getElementById('win') element and hide it.
There is a workaround.
Use text as content type and add the following code inside popup:
<a onclick="document.getElementById('win').hide();">...</a> <iframe></iframe>
Your link will work in that case.
Q: Can you tell me why these two simple dhtml tabs menus are conflicting and overwriting?
A: Notice, when you have several dhtml tabs menus on the one page you should calldtabs.js file only once.
 <script type="text/javascript" src="Top_Center1.files/dtabs.js"></script>