Targeting Frames Help!

Hello everyone I hope someone can help me here. I have a webDB that I am using navigators with. On the Main Nav I have 4 buttons (hotspots) I can switch the navigator with no problem using the:@setTargetFrame(“left”);

@Command([OpenNavigator];“MenuPrograms”);

But if I also try to add an @urlOpen to that the document is not opened…I need the document to load into a different Frame called “Main”. I have tried to use another @setTargetFrame but when I try to set it for any frame the code doesnt execute or is just ignored. So Can I not excute 2 command from the same hotsopt using different @setTargetFrames? Here is what i was tryign but yea its not working:

@setTargetFrame(“left”);

@Command([OpenNavigator];“MenuPrograms”);

@SetTargetFrame(“Main”);

@URLOpen(“http://mysite/Web/db.nsf/”);

Any ideas?

Subject: Targeting Frames Help!!

use javascript

window.parent.left.location = “MenuPrograms?OpenNavigator” ;

window.parent.Main.location = “http://mysite/Web/db.nsf…”