Recent Questions
Q: Is it possible to make the menuitems rightclickable in the latest version of Deluxemenu. I want to rightclick on the drop down menu in javascript item and choose open in new window. 
A: 	 No, there is no such a feature in Deluxe Menu v3.2.7.
You can write your item in the following way:
  ["|<a href='http://www.domain.com'>test test test</a>",""],
But you should assign style for this link.
A.link {
...
}
A.link:hover {
...
}
Q: Your service is excellent and I am making progress learning the program. I was able to resolve the transparency issue thanks to your help but, but now I have another one that is stumping me.
 I can get the menu to show up in my html document and it works as I hoped it would. However, no matter where I put the line of code in my html file, the down menu in dhtml always shows up at the very top of the page. The instructions indicate the following:
 Copy the following code into clipboard and paste it into the place you want to have the down menu in dhtml:
 <script type="text/javascript" src="newmenu2.js"></script>
 For example, into a table cell:
 <table>
 <td><script type="text/javascript" src="newmenu2.js"></script></td>
 </table>
 No matter where I put the code: 
 <script type="text/javascript" src="newmenu2.js"></script>, the menu shows up at the top of the page.
 What am I missing? 
A: Check that you're using relative position for the down menu in dhtml:
  var absolutePos=0;
  var posX="0px";
  var posY="0px";
Q: I am really confused by all of this. Perhaps I should state that I am computer savvy, however, I am not at all familiar with javascript or html. I was hoping to use the deluxe tuner to avoid having to deal with any of this. 
 I removed deluxe tuner and deluxe menu from my computer and reinstalled both. When I went to download the license key, I extracted the file from the ZIP file and replaced the files that were downloaded with the free version.
 I am now ready to re-create my menu. It says to edit my data file. When I try to do that it will NOT open. It says my computer does not have the right program? What do I need? 
 Also, once I have created the menu in Deluxe tuner, where should I save it? In the folder where my website pages are saved? Again, I am using Yahoo sitebuilder, so I am not exactly sure where I should save it in these folders? 
 Furthermore, when I tried to save a file before I removed Deluxe tuner and reloaded it, It would ask me if I wanted to copy all my files? What is that and what is the purpose?
 
A: > I am now ready to re-create my menu. It says to edit my data file. When I 
> try to do that it will NOT open. It says my computer does not have the right 
> program? What do I need? 
You should open your data file with the menu in any text editor andadd your reg. key. 
Try that. 
> Also, once I have created the menu in Deluxe tuner, where should I save it?
You can save your data file in any place and then copy to the rightplace. 
> Furthermore, when I tried to save a file before I removed Deluxe tuner and 
> reloaded it, It would ask me if I wanted to copy all my files? What is that 
> and what is the purpose? 
If you click yes, Deluxe Tuner save also all engine .js files and allyour images into "data.files/" folder. 
You can also click Export->To HTML. 
So you'll have html page with your menu and folder with engine .jsfiles and images. 
So you should to do the following things: 
1. open your page in Yahoo's SiteBuilder 
2. open generated with Deluxe Tuner html source code of the page i anytext editor 
3. copy such lines from html source code 
 
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
<script type="text/javascript">  var dmWorkPath = "data.files/";</script> 
<script type="text/javascript" src="data.files/dmenu.js"></script> 
 
and add them in you <head> tag. 
Then find such line, for example: 
<script type="text/javascript" src="data.files/data.js"></script> 
and add it in you  tag in the place where you want to have themenu. For example, you can paste it in <table> or <div> tag: 
<table> 
<tr><td><script type="text/javascript" src="data.files/data.js"></script></td></tr> 
</table> 
or 
<div align=center> 
<script type="text/javascript" src="data.files/data.js"></script> 
</div> 
For info see: 
http://deluxe-menu.com/installation-info.html 
You should also copy "data.files/" folder in the right place. In thefolder where you have you index.html page, created in Yahoo'sSiteBuilder. 
Q: After I successfully click and load the data in to my window using the tab menu, the tab defaults back to the original default tab. Because I have to reload my page after the tab has been selected the tab chosen is lost. What do you recommend for "remembering" the tab so that when the page reloads the correct tab is highlighted. 
A: Deluxe Tabs doesn't support API functions which can return theselected tab aslo.
You can set "bselectedItem" and "  var bselectedSmItem" parametersbased on your link before you call your data file.
For example, move "  var bselectedItem" and "  var bselectedSmItem" parametersfrom your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=   var bselectedSmItem=</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
You should define seltabs and selsmtabs using server side script.
You can also set it on every page before you call data.js file, forexample:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
   var bselectedItem=4;
   var bselectedSmItem=3;
 </script>
 <SCRIPT src="data.js" type=text/javascript></SCRIPT>
 </TD>