not sure if i can help you, but i did some research to find out how to do pop ups,
and i have the code to hide stuff in them. ill give you what i have and hope it helps.
Code:
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=somenumber,height=somenumber,left=somenumber,top=somenumber,toolbar=yes/no,scrollbars=yes/no,location=yes/no');
return false;
}
//-->
</SCRIPT>
Code:
<A
HREF="rbex.html"
onClick="return targetopener(this)">my page</A>
now for the specifications:
location: url
toolbar: self explanitory
height/width/: size
left/top: distance from left or top of screen
now, correct me if im wrong, but this should answer all your questions.
(i am not saying you should use this; afterall, all anybody has to do is view your scource and find where the link goes to.)
Bookmarks