// a function to open a pop-up window
function popup()
{
window.open( "popup.html", "",
"top=5,left=5,width=400,height=511,scrollbars=no");
}

// set the onload object
window.onload = popup();