Links keep opening in frame (when using _self)
The below code is a sample of how I’ve set up my link buttons in my HTML Canvas file.
I then publish as a OAM file. Then I insert the OAM into Dreamweaver.
Then publish out of Dreamweaver and/or Put up onto the actual server.
Originally the _blank were _self (also tried _parent and _top), all of them (_self, _parent and _top) kept erroneously opening in a frame (image below)?
Why is it behaving like this, when my old SWF site only used _self it worked perfectly (when Flash is enabled of coarse).
_blank is used now only because the others won’t work, but I would like it to behave like it used to, where it would stay on the current window/tab?
What am I doing wrong?
The files I’m using are available for download below.
Thanks.
_self, _parent and _top causes the urls to load in a separate frame?

Sample of my current link setups (originally it was _self😞
// 5.2 PRINT submenu button link
this.nPrint_btn.addEventListener("click", fl_ClickToGoToWebPage0502);
function fl_ClickToGoToWebPage0502() {
window.open("http://solarinkgraphics.com/#printAnchor", "_blank");
};
// 5.3 WEB submenu button link
this.nWeb_btn.addEventListener("click", fl_ClickToGoToWebPage0503);
function fl_ClickToGoToWebPage0503() {
window.open("http://solarinkgraphics.com/#webAnchor", "_blank");
};
// 5.4 ILLUSTRATIONS submenu button link
this.nIllus_btn.addEventListener("click", fl_ClickToGoToWebPage0504);
function fl_ClickToGoToWebPage0504() {
window.open("http://solarinkgraphics.com/#illustrationsAnchor", "_blank");
};
// 6. RATES button link
this.nRates_btn.addEventListener("click", fl_ClickToGoToWebPage06);
function fl_ClickToGoToWebPage06() {
window.open("http://solarinkgraphics.com/rates.html", "_blank");
};
Animate HTML5 Canvas File:
http://solarinkgraphics.com/files/Vrt_FoldOutNavbar_HTML5%20Canvas.fla
Dreamweaver file:
