
function ShowPopup()
{
// open the popup window
today=new Date();
seed=today.getTime();
var popupURL="http://www.john-lennon.com/jlday.htm?"+seed+'W'+122500;
var popup=window.open(popupURL,"WAPop",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height=305,width=420');

// set the opener if it's not already set.  it's set automatically
// in netscape 3.0+ and ie 3.0+.
if( navigator.appName.substring(0,8) == "Netscape" )
        {
        popup.location = popupURL;
        }
}
ShowPopup();
window.focus();