Recent Questions
Q: The submenus of the javascript menu buttons are reported behind the mediaplayer (IE 8)
A:  Try to set the following parameter for your object:
 windowlessvideo="true"
 So, you'll have:
<embed width="800" height="470" src="video/spot-1.wmv" windowlessvideo="true">
Q: That is what I need:
 a) I build a menu with an item like this: 
    ["||"Product1","http://127.0.0.1/product1.htm","","","",,"0",], 
 b) when I select that item, I need that page product1.htm loads into an iFrame. 
 Can I do this?
 
A:  You should set the Iframe name as the target value in the menuItems. 
You should also set the following parameter:
  var itemTarget = "";
Q: The popup menu gives the (first) menu of the top menu. I need of course for this to be the menu of the popup.
 
A:  Installation of your menu is not correct. 
Now you have: 
1) There is no need to call dmenu_popup.js file. You should delete thefollowing line:
<script type="text/javascript" language="JavaScript1.2" src="dmenu_popup.js"></script> 
2) Where you call source_pop.js file for Popup menu? 
You should add: 
<SCRIPT language=JavaScript1.2 src="menu_files/source_pop.js"type=text/javascript></SCRIPT> 
3) The ID of your Popup menu is 1. Now you have ID - 0. 
<img src="testimage.gif" width="200" height="200" onClick="return dm_popup(0, 9000, event);" style="cursor:hand;"> 
you should write: 
<img src="testimage.gif" width="200" height="200" onClick="returndm_popup(1, 9000, event);" style="cursor:hand;">
Q: How do I turn off transitional effects in my ajax dropdown menu?
A: You should set the following ajax dropdown menu parameters.
  var transition=-1;
  var transOptions="";
  var transDuration=0;
  var transDuration2=0;