There are several issues.
1) You are using <elementid>_<eventname> as your function name. I think you
are trying to use vbscript style auto-hookup of event handlers by name. I do
not believe this happens by default in JScript and since you did not specify
a language in the <script> attribute, it is defaulting to JScript.
2) JScript is case sensitive and the second line of your event handler you
call the "innertext" property when really it should be "innerText".
I created a sample that should accomplish what you want:
Here is the code for 3 files, (frameset.htm, left.htm and right.htm)
--- code for frameset.htm ---
<html>
<head>
</head>
<frameset cols="50%,50%">
<frame name="fr_left" src="left.htm">
<frame name="fr_right" src="right.htm">
</frameset>
<noframes>
<body>this page requires frames</body>
</noframes>
</html>
--- code for left.htm ---
<html>
<head>
<script>
function setMonth()
{
window.top.frames["fr_right"].document.all.chosenMonth.innerText =
window.event.srcElement.innerText;
}
</script>
</head>
<body>
Left pane
<br />
<br />
Choose Month:<br />
<div onDblClick="setMonth();">
<div>January</div>
<div>February</div>
<div>March</div>
<div>March</div>
</div>
</body>
</html>
--- code for right.htm ---
<html>
<head></head>
<body>
right pane
<br /><br />
Chosen Month will appear here:
<div id="chosenMonth"></div>
</body>
</html>
-------------------
Save those files and open up the frameset.htm. Double-click any of the
months and I think you will have what you need.

Signature
Thanks,
David W. Lovell
This posting is provided "AS IS" with no warranties, and confers no rights.
If a script was included within this post, use of included
script samples are subject to the terms, specified at
http://www.microsoft.com/info/cpyright.htm"
Please do not send e-mail directly to this alias. This alias is for
newsgroup purposes only.
> Hi,
> I am new to DHTML and my question might sound simple but I have lost a
[quoted text clipped - 26 lines]
> ____
> GBoul