I'm not sure that I really understand what you mean. But I'll take a shot at it.
If you want to have one frame be redirected by what is done in another frame, then try this:
three frames: topFrame, leftFrame, & rightFrame...
In top_frame:
<input type=button value=Edit name=btnEdit>
<input type=button value=Delete name=btnDelete>
<script language="VBScript">
<!--
Sub btnEdit_OnClick()
parent.leftFrame.location.href = "/EditLeftFrame.asp"
parent.rightFrame.location.href = "/EditRightFrame.asp"
End Sub
Sub btnDelete_OnClick()
parent.leftFrame.location.href = "/DeleteLeftFrame.asp"
parent.rightFrame.location.href = "/DeleteLeftFrame.asp"
End Sub
-->
</Script>
--------------------------------
when you click on the Edit button, it will move the left frame to EditLeftFrame.asp, and the right frame to EditRightFrame.asp.
When you click on the Delete button, it will move the left frame to DeleteLeftFrame.asp, and the right frame to DeleteRightFrame.asp.
if you don't want a frame to be relocated, but instead get out of frames and have the whole window relocate:
parent.location.href.
Just cut out the frame name.
Hope this helps.
-Ovatvvon