Share some code as well and the part where you are facing trouble.
What frames are you using? iframes? or just plain old frames?
IMO, some javascript would be required.
Edit:
Here you go. I quickly wrote down something, but unfortunately, it uses javascript.
If you are so adamant about not using javascript, do let me know, and we can try and figure out a non-
js solution.
Here is the snap:

Code from the main html page:
Code:
<html>
<frameset rows="90%,10%">
<frameset cols="25%,75%">
<frame src="frame_b.htm" name='frameb'>
<frame src="frame_c.htm" name='framec'>
</frameset>
<frame src="frame_a.htm" name='framea'>
</frameset>
</html>
Code from frame_a.htm
Code:
<html>
<head>
<title>Frame_A</title>
</head>
<body>
This is Frame A
</body>
</html>
Code from frame_b.htm
Code:
<html>
<head>
<title>Frame_B</title>
<script language='Javascript'>
function onItemClick()
{
window.parent.frames[1].document.writeln("<BR>Hey, you clicked. I am the image");
window.parent.frames[2].document.writeln("<BR>Hey, you clicked. I'm the description.");
}
</script>
</head>
<body>
This is Frame B<BR>
<a href='javascript:void(0)'; onclick='onItemClick()'>I am an item. click me</a>
</body>
</html>
Code from frame_c.htm
Code:
<html>
<head>
<title>Frame_C</title>
</head>
<body>
This is Frame C
</body>
</html>