Recent Questions
Q: We're looking to purchase the developer's license for the Deluxe menu/Tuner program and are not sure which to get. It shows one that doesn't contain the dhtml scripts source code and one that does. What is the importance of having the javascript source code? Will the program not work correctly if you don't have it? 
A:  See in Single Website License, Multiple Website License and DeveloperLicense our source code is obfuscated.
And in Developer License with Javascript Source Code you can see thecode and change it.
But we DO NOT provide technical support for modified source code.
Q: I am using JavaScript Deluxe Menu v3.1 and have some problem with the doctype declaration. If I use the declaration: 
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
 the menuBackImage and itemBackImage images do not display properly. Check with and without doctype declaration. Is there a known fix for this?
A:  You should specify units in "px" for the javascript menu object.
  var itemPadding="15px 10px 0px 20px";
  var menuStyles = [
 ["smColumns=2","itemPadding=25px 10px 10px 10px"],
 ["itemPadding=25px 10px 10px 20px"],
 ["menuBackImage=img/nahbp_1.gif","itemPadding=25px 10px 10px 20px"],
];
Q: Another question on the "onePerSession" parameter of window onload popup. Is there some other condition to it? I set it on the popup but the popup keeps coming back up. Could it be related only to window that initially loads?
 Another question. I have a page with numerous popup windows. Could there be some strategy to having the opening a subsequent popup opening closing a previous one, so there would only be one popup at a time?
 Comment; I found that I could combined multiple popup data.js files (the above webpage) together and now I understand how I don't have to deal with the "skin" popup window. 
A:  > Another question on the "onePerSession" parameter. Is there some other
> condition to it? I set it on the popup but the popup keeps coming back up.
> Could it be related only to window that initially loads?
It will appear only once per session. But if you open and close yourbrowser your window will appear again.You can send us a direct link to your website, so we can check it.
> Another question. I have a page with numerous popup windows. Could there
> be some strategy to having the opening a subsequent popup opening closing a
> previous one, so there would only be one window onload popup at a time?
You can use the same window and change its content usingdeluxePopupWindow.open() function.
Q: it's possible to use on every Item the OnMouseOver / OnMouseOut event?
move the mouse over a Menu !!!!!!
 
A: Each menu items can include any html code. 
So, you can include your own objects with onmouseover event, forexample: 
  var menuItems = [ 
 ["<div OnMouseOver='yourFunc()'>item text</div>"], 
 ["<div OnMouseOut='yourFunc()'>item text</div>"], 
]; 
Where yourFunc() is Javascript function.