Recent Questions
Q: I can't seem to have a "contact us" menu item to work. 
 I've even tried a custom target with 
<A HREF="mailto:
[email protected]"> </A>
 command and get the following error: 
 Can you perhaps suggest a way you know that works? 
A:  Please, write so, for example: 
["Contact us","mailto:[email protected]", , , , , , , ], 
Q: The problem that I am still experiencing (Im sure I have missed something obvious!) - is that all the pages open when you click on the relevant links but they always open with the "About Us" tab showing and then as soon as you click on a different tab you see it highlight for a second and then it just reverts back to the About Us tab even though the page has changed. As the site opens I obviously want the first tab to be highlighted as opposed to the 2nd one and the each page highlights and holds as you go through the menu. 
A:  See, you set 
  var bselectedItem=2; 
That is why "About us" tab is selected. 
You should change the selected tab depending on the page you are now. 
This Tabs menu can save pressed item automatically within1 page only. If you open another page, the menu can't remember presseditem. You should do that manually using Javascript and menu parameters(  var bselectedItem) or using any server-side script (php, asp, etc.) 
Deluxe Tabs doesn't support API functions which can return theselected tab. 
If your site is written on PHP you can set "bselectedItem" parameter based on your link beforeyou call tabs-kasper.js file. 
For example, move "bselectedItem" parameter from tabs-kasper.js file to yourcode. 
<TD vAlign=top align=left> 
/* Select Tab */ 
<script type="text/javascript" language="JavaScript1.2"> 
   var bselectedItem=<?php echo $seltabs; ?>; 
 </script> 
 <SCRIPT src="tabs-kasper.js" type=text/javascript></SCRIPT> 
 </TD> 
You should define seltabs using server side script. 
 
You can also set on every page before you call tabs-kasper.js file(for example, for solution tab). 
<TD vAlign=top align=left> 
/* Select Tab */ 
<script type="text/javascript" language="JavaScript1.2"> 
   var bselectedItem=4; 
 </script> 
 <SCRIPT src="tabs-kasper.js" type=text/javascript></SCRIPT> 
 </TD> 
 Try that.
Q: I'm using onclick tabs and want to ask if it's possible to change the the z-index id?
A:  To change z-index in Deluxe Tabs you should open dtabs.js file in anytext editor and find the following text "  var TLJ=2000;".
Here you should change the value.
Q: I need to set individual itemtargets for a number of menu script items...... 
 example:- 
   var itemTarget="Main";
 menuitem_1 targets the Main frame..
 menuitem_2 .. 
   SUBmenuitem_2_(1) targets the Top frame.. 
    SUBmenuitem_2_(2) targets the Main frame.. 
 menuitem_3 ..
   SUBmenuitem_3_(1) targets the Main frame.. 
    SUBmenuitem_3_(2) targets the Bottom frame.. 
 menuitem_4 targets the Main frame..
 Is this possible?
A: You can set target parameter for all items:
  var itemTarget="_blank";
or
  var itemTarget="main";
Where main - is the name of the main frame where you want to open the link.
or for each item individually:
["Home","testlink.html", "", "", "", "_blank", "", "", "", "", "", ],
...
["Home","testlink.html", "", "", "", "main", "", "", "", "", "", ],