pop-up boxes

M

matt shudy

hey,

otherwise you could try this if you don't mind using
javascript, put this right under the <html> tag, this will
open the popup, you can play around with the dimensions
and the place it is on screen

<script language="javascript" type="text/javascript">
var popup = window.open
("enterpagehere.htm", "popup", "left=200,top=200,width=600,
height=100")
</script>

if you want to close it on page load.. put this right
above the </body> tag

<script language="javascript" type="text/javascript">
popup.close()
</script>

matt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top