getting rid of IE toolbars in a small window

liunx

Guest
hiya.<br />
<br />
I'm trying to do a pop-up window with a button is pressed. I want it to open only to about 200x200 just to give some instructions so the parent page isn't cluttered. Also, the parent page is a flash page - which i could easily jump the timeline and display more content when a button is pressed, but these are instructions on how to log in to another site and i want them to be displayed in a seperate window that can be positioned on top of the new site. here's what i've got so far:<br />
<br />
<body><br />
<script language="javascript"><br />
var newWinWidth = 50;<br />
var newWinHeight = 50;<br />
window.resizeTo(newWinWidth, newWinHeight);<br />
window.open("dalocation.html","namehere","toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no");<br />
</script><br />
Instructions<br />
</body><br />
</html><br />
<br />
ok, this is opening fine, but all the standard toolbars take up so much height that you can't see any content. I put in the:<br />
<br />
window.open("dalocation.html","namehere","toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no");<br />
<br />
part to get rid of them per a thread i found in this forum, but it doesn't work. The getting rid of the toolbars part, i mean.<br />
<br />
Also, is there any way to put this pop-up anywhere but in the upper-right-hand corner? Like, by where the button for it was, for instance?<br />
<br />
Thanks<!--content-->dont know if this will help but i also wanted to how to remove the menubar and toolbar you could read this an see if you can get anything from it.<br />
<br />
<!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/showthread.php?s=&threadid=39233">http://www.webdeveloper.com/forum/showt ... adid=39233</a><!-- m --><!--content-->
 
Back
Top