That's a little different. You are not dealing with an opener or with a child window created as I indicated. You can still do it. What you have is a parent page:
index.php
and a child iframe:
Code:
<iframe src='"+acao+"_prod.php?id_prod="+id_prod+"&id_div="+unique+"' name='main' width='100%' height='100%' marginheight='1' scrolling='Auto' frameborder='0' id='main'></iframe>
This child iframe contains a page:
acao_prod.php
on acao_prod.php things on index.php would be parent.object so, from my previous example, index.php's title would be from acao_prod.php:
parent.document.title
and what you seem to be after would be:
parent.hidebox(ID)
Bookmarks