Automatic PopUp Window
by Dinesh[ Edit ] 2012-05-30 18:41:19
This script will create a popup window that opens as soon as your page is viewed. This script should be, between the <head> </head> tags of your document.
<SCRIPT LANGUAGE="JavaScript">
window.open("example.html","","toolbar=no,menubar=no,
location=no,scrollbars=no,resizable=no,status=no,width=250,
height=250,left=250,top=175").blur(); window.focus();
//-->
</SCRIPT>