First of all,

Originally Posted by
ahew72
[target="_blank]
is ambiguous. It should either be:
or
Without testing, I imagine it would be interpreted as no target, opening in the same page or frame where the link is. I think you mean the link is opening in a new window but, I cannot be sure. Since the behavior of the demo is to open in the same window or frame, I am inclined to think you might mean that as well. In any case, to get the link to open in the frame you mention just put it in the menu array declarations, example:
Code:
//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href="http://www.javascriptkit.com" target="mainFrame">JavaScript Kit</a>'
menu1[1]='<a href="http://www.freewarejava.com" target="mainFrame">Freewarejava.com</a>'
menu1[2]='<a href="http://codingforums.com" target="mainFrame">Coding Forums</a>'
menu1[3]='<a href="http://www.cssdrive.com" target="mainFrame">CSS Drive</a>'
Bookmarks