PDA

View Full Version : Pop Ups



visual-dream.tk
June 28th, 2003, 13:54
Hello, i was wondering in anybody here could tell me how to get pop up windows on my webpage that i could put adverts on etc.

Loon
June 28th, 2003, 14:01
a simple way



<script language="javascript">
function popup(){
var url="path_to_the_page"
winpops=window.open(url,"","width=250,height=100,")
}
</script>

<body onload="popup()">