<html>
<head>
<script>
function squirt_data()
{
window.top.frames.main.
push_event("key",$value);
window.top.frames.me.location=
"to_browser.cgi";
}
</script>
</head>
<body onload="squirt_data()">
This frame is not meant
to be looked at directly.
</body>
</html> |
<html><head>
<title>Main body window</title>
<script>
function push_event(key,value)
{
if(key = "key" )
{
document.getElementById('hitme').
value=value;
}
}
</script>
</head>
<body>
<form><input id="hitme" type="text"
value="------"></form>
</body>
</html> |