I think what you want might be accomplished with a simple javascript
popup window. It's pretty straightforward, here's an example:

<script language="javascript">
        function popupwin(URL)
        {
                window.open(URL, 'title',
'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,width=<width>,height=<height>');
        }
</script>

This is then called from a link like this:

<a href="javascript:popupwin('somepagetopopup.html')">Click here for a
popup window</a>

Does that make sense? This works in both Internet Explorer 5.5 and
Netscape Communicator 4.75, which are all I have handy to test with. If
you want a link in the page that will close the popup window, add
something like this:

<a href="javascript:window.close();">click here to close the window</a>

HTH, Matt



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to