I have parent page index.php and inside it i have iframe like below
<div id="main-content1" style="position:absolute;float:none;top:80px;margin-left:170px;width: 830px;">
<iframe onload="IfarmeOnload();" style="display:block; margin-left:none; margin-right:none; width: 100%; height: 100%;" src="<?php echo $home; ?>" id="rightMenu" name="rightMenu" frameborder="0"></iframe>
</div>
when i click on the link that located in Parent window i want to redirect iframe content to according to that URL.
Then once Iframe loaded sucessfully i want redirect whole index.php page only once
EDIT
i tried this
echo "<script> document.getElementById('rightMenu').contentWindow.location='http://www.google.lk'</script>";
but this is redirecting to google.lk to not loading inside the ifamme