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
 
Top