Recent Questions
Q: Does your menu html javascript support Arabic language fonts?
A: Actually you can use any letters in the menu.
Please, check that you've set "Tools/Use utf8 encode".
When you save your data file in UTF8 you should use the same encoding on our html page.
So you should write:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
If you don't want to use UTF-8 encode on your page you should turn off"Tools/Use utf8 encode" property, save your data file and manuallychange your letters in any text editor.
 
Q: When I click on a tab in the css drop down menu tabs it is not activate.
What is the setting to change this?
A: You can set "bselectedItem" and "  var bselectedSmItem" parameters
 based on your link before you call your data file.
For example, move "  var bselectedItem" and "  var bselectedSmItem" parameters
 from your data file to your code.
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
  var bselectedItem=   var bselectedSmItem= </script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>
You should define seltabs and selsmtabs using server side script.
You can also set it on every page before you call data.js file, for example:
<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
  var bselectedItem=4;
  var bselectedSmItem=3;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>>
Q: If need to make changes do I need to replace all the files and folder and script in all the web pages? Or are there just one or two files that need to be replaced? Which files or folders?
 
A: You need to change only your data.js (by default) file. It is thefile with your menu parameters. 
Then you should upload this file on your server and may be add somenew images. That is all. 
Q: I am totally confused by this now but I have 2 data files - one for a menu bar going horizontal and one going vertical both containing the same information. But even though the content is the same, the layout is different. 
 You will see that on the horizontal menu, 
 Fleet 
 Financce 
 CPC Cards 
 Cashire 
 These are listed correctly under each other but on the vertical one, the layout differs.
 
A: You should write your parameters more carefully. 
See, now you have 
 menuItems = [ 
 ["About us","javascript:alert('Coming Soon')", , , ,"" ,0 , , , ], 
    ["|||Organisation Chart","javascript:alert('Coming Soon')", , , ,"" ,1, , , ],
First you have the 1-st level of menu items then at once 4-th. It isnot right. You should write the number of your Individual Style in ""also. 
See, how you should write your menuItems: 
 menuItems = [ 
 ["About us","javascript:alert('Coming Soon')", , , ,"" ,"0" , , , ],
  ["|Organisation Chart","javascript:alert('Coming Soon')", , , ,"","1", , , ], 
  ["|Who's Who?","/k6intranet2.nsf/PageTitleLookup/Who's Who?OpenDocument", , , ,"" ,"1", , , ], 
  ["|Contact Details","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
 ["How To?","javascript:alert('Coming Soon')", , , ,"" ,"0", , , ], 
  ["|Fleet","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
    ["||Hire a Vehicle","/k6intranet2.nsf/PageTitleLookup/Hire a Vehicle?OpenDocument", , , ,"" ,"1", , , ], 
    ["||Report an Accident","/k6intranet2.nsf/PageTitleLookup/How to report an accident?OpenDocument", , , ,"" ,"1", , , ], 
    ["||Report a Breakdown","/k6intranet2.nsf/PageTitleLookup/Report a Breakdown?OpenDocument", , , ,"" ,"1", , , ], 
  ["|Finance Admin","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
    ["||Capitalise an Asset","/k6intranet2.nsf/PageTitleLookup/capitalise an asset?OpenDocument", , , ,"" ,"1", , , ], 
    ["||Pay your Personal Calls on Mobile Phone Bills","/k6intranet2.nsf/PageTitleLookup/Pay your personal calls on mobile phone bills?OpenDocument", , , ,"" ,"1", , , ],
    ["||Request a credit to be raised","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
  ["|CPC Cards","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
    ["||Request a new CPC user","/k6intranet2.nsf/PageTitleLookup/request a new cpc user?OpenDocument", , , ,"" ,"1", , , ], 
    ["||Report a Lost/Stolen CPC Card","/k6intranet2.nsf/PageTitleLookup/Report a lost or stolen card?OpenDocument", , , ,"" ,"1", , , ],
    ["||Enquire about a general CPC query","/k6intranet2.nsf/PageTitleLookup/enquire about a general cpc query?OpenDocument", , , ,"" ,"1", , , ], 
  ["|Cashier","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
    ["||Request a Cashbook Manual Payment","/k6intranet2.nsf/PageTitleLookup/Request a Cashbook Manual Payment?OpenDocument", , , ,"" ,"1", , , ], 
    ["||Request a Cashbook BACS Payment","/k6intranet2.nsf/PageTitleLookup/Request a cashbook Bacs payment?OpenDocument", , , ,"" ,"1", , , ], 
 ["Useful Information","javascript:alert('Coming Soon')", , , ,"" ,"0" , , , ], 
  ["|Month End Timetable 2007","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
  ["|Month End Year to Date Results","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
    ["||Coming Soon...","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
 ["Finance Focus","javascript:alert('Coming Soon')", , , ,"" ,"0" , , , ], 
  ["|Coming Soon...","javascript:alert('Coming Soon')", , , ,"" ,"1", , , ], 
 ["Coming Soon","javascript:alert('Coming Soon')", , , ,"" ,"0", , , ], 
 ]; 
 dm_init();