Recent Questions
Q: Is it possible to put an enter in a drop down menu item? 
 Like can I split Login newspaper to login (enter) newspaper 
 "Login 
 newspaper"
A:  You can use any html code within menuItems. 
Use 
 tag to wrap your text.
["login <br> newspaper","","","","","","",""]
Q: Two questions. First I get a "Error! Skin Load!" popup when my onmouseover popup window loads.
 I see references to "skin.js". Is this supposed to be generated?
 Secondly.
 I am being really dense. I would like to use Deluxe Popup Windows in response to a mouse click on a picture. So far with deluxe Menu, I just put a statement like this:
 <script type="text/javascript" src="rvmonitor.js"></script>
 where I wanted the menu to show up. The web page loads and the Deluxe Menu displays.
 I have managed to make the onmouseover popup window appear by using that code, the web page loads and the popup loads (with the skin error).
 I know how to get a larger picture from a smaller one like this:
 <a href="../images/Tige/CabinetMod/Tige_CabinetMod04.JPG">
 <img class="border0" src="../images/Tige/CabinetMod/Tige_CabinetMod04_small.JPG" alt="Gasketmount">></a>
 I just don't know how to put the rvmonitor.js into the <a href...></a> function. Could I have a simple example? 
A:  See, to install Deluxe Popup Window you should call two .js files onyour page:
<head>
...
<script type="text/javascript" src="deluxe-popup-window.files/dpopupwindow.js"></script> //engine file
</head>
<body>
...
 <script type="text/javascript" src="deluxe-popup-window.js"></script> //data file
...
</body>
Copy deluxe-popup-window.files folder and deluxe-popup-window.js fileinto the same folder with your html page.
To open your window on mouse click you should do the following things:
<a title="Click to open the window" href="javascript:;"onclick="deluxePopupWindow.open('win', '<img class=\'border0\'src=\'../images/Tige/CabinetMod/Tige_CabinetMod04.JPG\' alt=\'Gasketmount\'>', 'Full Image', 'width=180,height=270,resizable,scrollbars=no,middle,right,fade-effect', 'windowsvista_graphite')"><imgmount\'>class="border0" src="../images/Tige/CabinetMod/Tige_CabinetMod04_small.JPG" alt="Gasket mount"></a>.Q: Is there a way to make the dhtml pull down menu not reset after a link is clicked.
 Now every time I click a link in the tree menu it takes me to the linked page
 but all the menus re-expand.
A: When user clicks the link, the browser loads a new page and the script re-create the menu.
If you want to open the needed section automatically on load you can use the following:
1. Save the state to cookies
   var tsaveState=0;
2. Use frames
3. Put the special script on each page of site that will open appropriate section:
 (dtreet_ext_expandItem)
See more info here:
http://www.deluxe-tree.com/functions-info.htmlQ: In the drop down menu generator there's no option for turning the cursor into a hand. There's hourglass etc but no hand. Is there a way to make it a hand? 
A:  You should set the following parameter 
  var itemCursor="pointer";