how do I make top title bar disappear?

liunx

Guest
Hi<br />
<br />
I have a small pop-up window which I want to have no menu bars or anything at it's top.<br />
<br />
It has the following code which successfully gets rid of almost everything:<br />
<br />
location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no<br />
<br />
The only thing that remains is the blue document title bar with the minimize, maximize, close buttons.<br />
<br />
How can I get rid of this blue title bar?<br />
<br />
Thanks!<br />
<br />
Midge<br />
<br />
PS I already have a 'close window' link on it so people can get rid of the window. The window just looks heaps better without the blue bar at the top.<!--content-->What you need is a chromeless window. It's something that works only in IE, and not on Win XP. I recommend you to be satisfied with the title bar, but if you aren't, go ahead:<br />
<script language="JavaScript" type="text/javascript"><!--<br />
function OpenChromeless(winurl, w, h){<br />
var newleft=(screen.width-w)/2;<br />
var newtop=(screen.height-h)/2;<br />
var winopen=window.open('about:blank', '_blank', 'fullscreen=1');<br />
winopen.resizeTo(w,h);<br />
winopen.moveTo(newleft,newtop);<br />
winopen.navigate(winurl);<br />
}<br />
<br />
// Usage:<br />
// OpenChromeless('Window URL', width, height);<br />
//--></script><!--content-->you have to use a chromeless script. totally different than what you have there.<br />
<br />
<!-- m --><a class="postlink" href="http://www.snippetlibrary.com/viewhtml.php?id=5&kid=20&siteid=65">http://www.snippetlibrary.com/viewhtml. ... &siteid=65</a><!-- m --><br />
<br />
of course, this is one way<!--content-->
 
Back
Top