sende fra form i popup til iframe på anden side ?
hvordan sender man fra en form i en popup til en iframe på en anden sidemin popup:
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<SCRIPT LANGUAGE="JavaScript">
function doRule()
{
iView.focus();
var markeret = document.selection.createRange();
iView.document.execCommand('inserthorizontalrule', false, null);
}
</SCRIPT>
</HEAD>
<BODY>
<FORM target="iView">
<input type="button" onClick="doRule()" value="Ruler">
</FORM>
</BODY>
</HTML>
