Well Hi again,
I am using some nice, simple javascript in my website. I have already got:
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=225,left = 312,top = 234');");
}
// End -->
How would I change this, I think here:
eval("page" + id + " = window.open(URL, '" + id
To make it say just the name meant for the page, rather than this for example: http://www.kirupa.com - Ben’s PopUp
So it just says “Ben’s PopUp”
Thanks
Benji