Snippets

Here is your code snippet

Code


Pop up window

This will open the page popuppage.html in a new window

Paste the following between the <HEAD> and </HEAD> tags

<script>
function popper()
{
window.open("popuppage.html", "advertising", "toolbar=yes,location=yes,directories=no,status=no, menubar=yes,scrollbars=yes,resizable=no,copyhistory=yes,width=800,height=600")
}
</script>

Now put this inside your body code.

<body onLoad="popper()">