I voted give up because Microsoft Outlook Bar is an IE only script, meaning that your page will most likely be inaccessible in most browsers.
That said, say you are doing something like so with DHTML Window:
Code:
function openmypage(){ //Define arbitrary function to run desired DHTML Window widget codes
ajaxwin=dhtmlwindow.open("ajaxbox", "ajax", "windowfiles/external.htm", "#3: Ajax Win Title", "width=450px,height=300px,left=300px,top=100px,resize=1,scrolling=1")
ajaxwin.onclose=function(){return window.confirm("Close window 3?")} //Run custom code when window is about to be closed
}
Then you can place in the menu something like:
Code:
OutBarFolder1=new Array(
"Folder 1",
"mail.GIF","Dynamic Drive","javascript:openmypage()","window",
"chat.GIF","What's New","http://dynamicdrive.com/new.htm","window",
"news.GIF","What's Hot","http://dynamicdrive.com/hot.htm","window",
"netm.GIF","Link to us!","http://dynamicdrive.com/link.htm","window"
);
Bookmarks