I really don't know but, according to the documentation it looks like -
Instead of:
Code:
addMenuItem(new menuItem("Myself", "", "myself.php"));
use:
Code:
addMenuItem(new menuItem("Myself", "", "code:iframe_name.location.href='myself.php'"));
where iframe_name is the name of the target iframe ex:
HTML Code:
<iframe name="iframe_name"></iframe>
. This is a 'normal' type of link and will add to the history stack just like:
Code:
<a href="myself.php" target="iframe_name">Myself</a>
would. If you want to avoid adding to the history stack, use:
Code:
addMenuItem(new menuItem("Myself", "", "code:iframe_name.location.replace('myself.php')"));
Bookmarks