Recent Questions
Q: Have a question regarding your Deluxe-Tabs product.
 Is it possible to set dhtml navigation menu up so clicking a tab runs a function in my page?
 
A:  You can use your own javascript functions and html code in the menu items. 
Unfortunately, you can't assign onmouseover/onClick event to each item. However, you can achieve this by using standard html objects within items, for example: 
   var bmenuitems = [
 ["<div onMouseover='your_code_here'>item text</div>", "content1"]
 ];
Q: Everything is working quite well -- with the following exception: 
 I added a button.gif file to my item, hoping that the graphic would appear rather than just a colored cell. (Yes, I did upload the button.gif file to the .files folder.) 
 My work looks great in the preview window, but still shows the colored cells in my web page (www.misyssbm.com/buy/index.php left side menu). My text changes show up on the web page, so I know it was updated. 
 Any ideas (note I have two deluxe menus)?
 
A: You should check all your images paths. 
You should also upload these files on your server in"side_menu.files/" folder. 
I've tried to download "side_menu.files/btn_navy.gif" but I can't doit. 
Please, check it. 
Q: How does your multiple website license work?  Do you have license details?  For instance, our company develops a web application that we then license for other companies to use.  Can we simply use your multiple website license? 
A:  See, with Multiple Website license you should generate your own keysand use them on your Intranet/Internet websites. 
Your key will work on the registered domain name only. It won't workon a local machine. 
If you want to use the menu within application which doesn't havefixed domain name you should buy Developer License. 
This version of the script doesn't check keys and it isn't bound to adomain name.
Q: Also once you click a link and go to a new page, how do you get the java choice menu tab for that new page to stay the highlighted one? 
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=<?php echo $seltabs; ?>;
   var bselectedSmItem=<?php echo $selsmtabs; ?>;
 </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>