Recent Questions
Q: It is mostly working now except where I have two rows of nav tabs.. The top row opens new pages and the bottom row is just regular div tabs... works fine in IE and Firefox but not Chrome... any ideas? 
A: 	Try to open links in the following way:
   var bmenuItems = [
 ["Overview","link:Sun_Cabo_Services.asp", "", "", "", "", "0", "", "", ],
 ["-"],
 ["Villa Services","link:Cabo_Villa_Services.asp", "", "", "", "", "0", "", "", ],
 ["-"],
 ["Chef/Cook Services","link:Cabo_Chef_Services.asp", "", "", "", "", "0", "", "", ],
 ["-"],
 ["Spa Services","link:Cabo_Spa_Services.asp", "", "", "", "", "0", "", "", ],
 ]; 
Q: I have a issue involving the location of the files. 
 What is the correct method of referencing the webroot (document root) in the deluxe tuner? 
 I ask because I have some pages that are in a sub folder on the server. 
 eg. index page is http://www.domain.com/index.html 
 but another page might be at 
 http://www.domain.com/somedir/somepage.html 
 And then the references do not work. 
 Currently I am editing the data.js file after saving it in deluxe tuner.
 
A:  If you want to use relative paths you should write your links in thefollowing way. 
If you have, for example such file structure: 
     deluxe-menu_files/ 
      dmenu.js 
      data.js 
     images/ 
     html_pages/ 
      page1.html 
      page2.html 
     index.html 
So, you should write write all your paths concerning index.html file. 
For example, you paths will be: 
    ["HOME","html_pages/page1.html", , , , "_self", "-1", , , ], 
    ["ABOUT US","html_pages/page2.html", , , , , , , , ], 
Unfortunately, Deluxe Tuner can't do it automatically. You shouldcorrect your paths manually. 
You can use additional parameters to make menu paths absolute: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameters allow to make images and links paths absolute. 
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
  var menuItems = [ 
    ["text", "index.html", "icon1.gif", "icon2.gif"], 
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
Images paths will be look so: 
http://domain.com/images/icon1.gif 
http://domain.com/images/icon2.gif 
Please, try to use these parameters.
Q: Is it correct that in javascript treeview menu you can specify your target as a different frame?
A: Yes, you can specify frame name as the target in Deluxe Tree:
  var titemTarget="frame";
Q: With: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The content of my tabs menu doesn't show in IE.
A: Delete "height: 0%;" parameter from the style of the content DIV:
<DIV class=tabPage id=content4 style="VISIBILITY: hidden;">