Recent Questions
Q: I would like to call a popup window (created in Deluxe Truner) from a deluxe menu item. 
A: You should add the code for popup window on your html page with the menu:
 <!-- Deluxe Popup Window -->
 <noscript><a href="http://deluxepopupwindow.com">menu drop down by DeluxePopupWindow.com</a></noscript>
 <script type="text/javascript" src="deluxe-popup-window.files/dpopupwindow.js"></script>
 <script type="text/javascript" src="deluxe-popup-window.js"></script>
 <!-- (c) 2006, DeluxePopupWindow.com -->
Inside menuItems you should open the window in the following way:
 ["Click to open Popup Window","javascript:deluxePopupWindow.open('window1', 'http://deluxepopupwindow.com', 'Popup window',
 'width=420,height=300,resizable,scrollbars=no,middle,right,fade-effect', 'windowsvista_graphite','iframe')",
 "", "", "", "", "0", "", "", "", "", ],
More info about deluxePopupWindow.open() method you can find here:
http://deluxepopupwindow.com/window-installation-info.html
Q: My question is regarding the single user license. I am currently writing a website for use on my companies intranet. The machine I am writing it on will unlikely be the machine that it eventually lives on, which could also quite possibly change as well. Looking at the instructions for the license, it seems I require a domain name for the key. The problem is that the current machine I am using is not in DNS, & even if it were, the machine that it will eventually live on will not resolve to the same name (if it even will have a DNS entry in our internal DNS server). So, does the license look for the name that is specified from the client browser, or does it look internally on the web server itself? I am wondering if I set the web servers hosts file or httpd.conf to reference the name given in the license key taht will allow me to transfer the menu to another server? 
A: You can register the menu for a domain name or for IP address. 
In other words, you should register the menu for the domain name thatyou print in a browser's search string, for example: 
http://intranet/ 
http://intranet/folder 
http://192.168.0.1 
Q: That worked for the rollover drop down menu but I lost my drop shadow on the main menu. The sub-menus still have it. The preview has the drop shadow but when I view it in IE it is not there.
A: You should check the following parameters:
  var shadowLen=3;
  var shadowColor="#B1B1B1";
  var shadowTop=1;
Q: Can I use my own images as the tabs in a dreamweaver navigation bar?
A: The Drop down menu items have the following structure:
   var menuItems = [
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 ...
];
Where iconNormal, iconOver - Icons of an item: icon in normal state, icon in mouseover state.
So you can set your menu items in a such way:
  var menuItems = [
 ["","testlink.htm", "icon1.gif", "icon1o.gif"],
 ["","", "icon2.gif", "icon2o.gif"],
  ["|","testlink.htm", "icon3.gif", "icon3o.gif"],
  ["|","testlink.htm", "icon4.gif", "icon4o.gif"],
  ["|","testlink.htm", "icon5.gif", "icon5o.gif"],
 ["","testlink.htm", "icon1.gif", "icon1o.gif"],
];