Recent Questions
Q: I have a Deluxe Menu Multiple Website License and have been using it in several projects where it is running without problems. But now in my new project the sub menu won't drop down in the content frame, but will appear in the same frame as the main menu. What's wrong? 
A: It seems that you open the submenu in the wrong frame.
Set ID for the first frameset:
<FRAMESET id=frmSet rows=220,*>
 <FRAME id=frame1 src="Deluxe Menu Samples_files/cross-frame-horizontal-1.htm"> //menu frame
 <FRAME id=frame2 name=frame2 src="Deluxe Menu Samples_files/testlink.htm"> //content frame
</FRAMESET>
 Then you should open your data file in any text editor and change
dm_init(); to dm_initFrame("frmSet", 0, 1, 0);
For more info see:
http://deluxe-menu.com/cross-frame-mode-sample.html
Q: I have a problem with the Menus I bought. When there is a flash file on the page the submenu javascript always goes behind the flash.
 How do I fix this?
A: To overlap your flash file you should add opaque parametersto your flash, for example:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"width="566" height="250" title="Intro">
 <param name="movie" value="/includes/banner_final3d.swf" />
 <param name="wmode" value="opaque">
 <param name="quality" value="high" />
 <embed src="/includes/banner_final3d.swf" quality="high" wmode="opaque" pluginspage="http://www.macromedia.com/go/getflashplayer"type="application/x-shockwave-flash" width="566" height="250"></embed>
 </object> Q: Now it works fine in Firefox and mostly in IE.... Only problem... In IE...
 When the page with dhtml tab menu first loads ... It does not load the content of the first DIV....
 It's fine in Firefox...now IE just does not load the first div... I've tried added a JS function to set to visible the first DIV onLoad...but that does not work either...
 Is there anyway to hard-code in ...to set the first DIV to visible?
A: I've just checked your website. Your dhtml tab menu work correctly.
You should check that you use correct value of
  var bselectedItem=1;
parameter.
That is mean that second item in menuItems array will be highlighted.
 ["-","", "", "", "", "", "", "", "", ], //0
 ["About","content1", "", "", "", "", "", "", "", ], //1
 ["FAQs","content2", "", "", "", "", "", "", "", ], //2
 ["Before & Afters","content3", "", "", "", "", "", "", "", ], //3
 ["Pre/Post Care","content4", "", "", "", "", "", "", "", ], //4
 ["Special Offers","javascript:location.href = '../specials/index.htm'", "", "", "", "", "", "", "", ], //5
Now you have also:
<script type="text/javascript" src="data-deluxe-tabs.js"></script>
<table cellpadding="0" cellspacing="0" border="0" width="500">
<tr>
 <td align=center valign=top>
<table cellpadding="0" cellspacing="0" border="0" width=500 height=250 align=center>
<tr>
 <td valign=top height=1>
 <script type="text/javascript" src="../scripts/templates/tabs-opera.js"></script>
 </td>
</tr>
I think that it is not correct. You should write:
<table cellpadding="0" cellspacing="0" border="0" width="500">
<tr>
 <td align=center valign=top>
<table cellpadding="0" cellspacing="0" border="0" width=500 height=250 align=center>
<tr>
 <td valign=top height=1>
<script type="text/javascript" src="data-deluxe-tabs.js"></script>
 </td>
</tr>
Q: Does your menu system support imbedded check boxes? I want to be able to use menus to help users select options and want to have those selections УstickФ for the duration of their session. Do you have any examples of this? 
A: Yes, you can insert any html code within menuItems, for example:
  ["|You can place <b>any HTML code</b><br> to item, for example <u>image</u>:<br><img src=img/logo.gif>","testlink.html"], 
  ["|Index  <select style='width:120px;height:17px;font:normal 10px Tahoma,Arial;'><option>Section 1<option>Section 2<option>Section 3</select>", "", "", "", "", "", "", ""], 
  ["|Search <input type=text style='width:80px;height:17px;font:normal 10px Tahoma,Arial;'>  <input type=button value='Go' style='width:30px;height:17px;font:normal 10px Tahoma,Arial;'>", "", "", "", "", "", "", "0"], 
  ["|Write Us", "mailto:[email protected]", ""],