popup when enter site
popup when enter site
Out of context: Reply #1
- Started
- Last post
- 1 Response
- who0
where do you call the function ?
you can use a general function, with these parameters
function openPopUpWindow(url,name,size) {
window.open(url,name,size);
}and then call this at the body
onload="openPopUpWindow('pop.htm...
Good Luck :)