Recent Questions
Q: I would like with pleasure, that if one clicks on "Seite1", one in the menu dynamique dhtml sees that one is on page 1 therefore color different or icon different. 
A: You should set pressed menu dynamique dhtml item. On each page:
 <script type="text/javascript">
 onload=setPressed;
 function setPressed()
 {
 dtreet_ext_setPressedItem(0,dtreet_ext_getItemIDByIndex (0, 3));
 }
 </script>
where 3 - is the index of Seite1 item.
Q: Shall I have to call the main egine file of the javascript menu maker - dmenu.js twice if I want to install two menus on the page.
 The second script:
 <script type="text/javascript" src="datatopnav.files/dmenu.js"></script>
 Is for the top navigation menu, the datahscounseling is for the side menu. If I delete that line won't my top navigation be gone? 
A:  No, when you have several menus on the same page you should calldmenu.js file only once and then call several data files.
You should install the menus in the following way:
<head>
...
 <noscript><a href=http://deluxe-menu.com/>Javascript Menu Maker by Deluxe-Menu.com</a></noscript>
 <script type="text/javascript">  var dmWorkPath = "datahscounseling.files/";</script>
 <script type="text/javascript" src="datahscounseling.files/dmenu.js"></script>
 <script type="text/javascript" src="datatopnav.files/dmenu.js"></script>
 <!-- (c) 2007, http://deluxe-menu.com -->
...
</head>
<body>
...
 <TD height=25 colSpan=3 class=style1>
 <script type="text/javascript" src="datatopnav.js"></script></TD>
...
 <td width="180" height="307" rowspan="2" valign="top" bgcolor="ffffff"><div align="left">
 <script type="text/javascript" src="datahscounseling.js"></script></DIV>
...
</body>
Both menu will work correctly in that case.
See the example I've sent you. It works fine.
You can find more info about installation of several menus on thesingle page:
http://deluxe-menu.com/installation-info.htmlQ: What command that I use the HTML code that will be showing in the pop up window to close it?
A: Try to use the following functions to show and hide popup window:
deluxePopupWindow.open()
hide()
For example you should write:
["","javascript:deluxePopupWindow.make('window', 'http://google.com/', '#1: Google Web site', 
'width=590,height=350,resizable,scrollbars,minimizable,fullscreen, centerscreen,move-effect=top,,opacity=1,
floatable=yes', 'default')","icon.gif"]
["","javascript:document.getElementById('window').hide();","icon.gif"]
Notice also that you should move the following code from your data file on your html page directly inside SCRIPT tags:
<script type="text/javascript">
menuItems[
[...]
];
dm_init();
</script>
See more info:
http://deluxepopupwindow.com/window-installation-info.html
Q: My site has three levels of a folder structure.  Can I create a menu that will allow me to link in and out of folders?  Or must I design three menu's with different link locations.   
A:  You can use one menu.
Use additional parameters to make menu paths absolute:
  var pathPrefix_img = "http://domain.com/images/";
  var pathPrefix_link = "http://domain.com/pages/";
These parameters allow to make images and links paths absolute.
For example:
  var pathPrefix_img = "http://domain.com/images/";
  var pathPrefix_link = "http://domain.com/pages/";
  var menuItems = [
 ["text", "index.html", "icon1.gif", "icon2.gif"],
];
So, link path will be look so:
http://domain.com/pages/index.html
Images paths will be look so:
http://domain.com/images/icon1.gif
http://domain.com/images/icon2.gif
Please, try to use these parameters.