Recent Questions
Q: Only with IE7 (IE6 ok, firefox ok): on rollover on javascript submenu, the images don't show properly .. But, at second rollover on the same link, the image shows it correctly... 
 We use jquery library on the page. 
 Could you tell us something about? 
A:  Please try to change dm_writeAll param to
  var dm_writeAll=1;
Q: I have a problem. How can we get the value of a parameter passed by the menu, when a menu item is clicked? For example I want to get the URL or file name to be open by the menu item when it is clicked. 
 I am talking about TREE menu.
 
A: If you want to open url or a file when you click on items of the tree menu you can write, for example: 
  var tmenuItems = [ 
["+DHTML Menus","http://dhtml-menu.com", "images/xpicon1.gif", , , "DHTML Menus", , "0", , , , ], 
  ["|Save as...", "javascript:OpenFile('file_name')"] 
];
Q: I want to have the pop up window display as you mouse over an image/link - is this possible?
A: For example you want to open a popup onMouseover, onClick or
onMouseout on a link.
So, you should create a link on your page and set id="" for it, forexample:
<a href="javascript:;" id="link">Open popup OnClick</a>
<a href="javascript:;" id="over">Open popup OnMouseover</a>
<a href="javascript:;" id="out">Open popup OnMouseOut</a>
In Deluxe Tuner you should set:
onMouseOver - over
onMouseOut - out
onClick - link
So you'll have
deluxePopupWindow.attachToEvent(win,',,onClick=link,onMouseOver=over,onMouseOut=out,')
Q: I have used Deluxe tuner menu on a web page and facing two small problems
 a) The separator I have used do not show up. This is supposed to be a black horizontal line below every menu item. The image name is sep.jpg
 b) The submenu appears on the right and I am unable to figure out a way to get the submenu to appear on the left. My navigation is placed on the right panel so if the sub menu appears on right of drop down menu bar, it practically goes off the page.
 Can you please help with this and let me know why this is happening ?
A: 1) You should set separators between main items:
 ["Home","testlink.html", "data.files/bul.jpg", "data.files/bul.jpg", "", "", "", "", "", ],
 ["-"],
 ["About Us","", "data.files/bul.jpg", "data.files/bul.jpg", "", "", "", "", "", ],
And set:
  var separatorVImage="data.files/sep.jpg";
  var separatorVWidth="100%";
  var separatorVHeight="1px";
  var separatorPadding="0px";
2) You should set the following parameter:
  var smViewType=2;