I need an information page popup to load on the right side of the screen when the user clicks a hyperlink (requesting the info). This popup page is in frames, and I'm having trouble getting it to work.
With a regular html page I'd just put onLoad="moveTo(20,200);" in the <body> tag, but with a frameset I have no body tag so am not sure how to proceed. I tried this without success:
Code:
<head>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function win() {
onLoad="moveTo(20,200);"
}
// End -->
</script>
</head>
Is there a way to move the small frameset window to the right (onload) using js?? Thanks...