Hi there.
It would have been helpful if would have included your code so that we could help you out.
anyway..here is a quick solution...which may be very different to what you had already written...
Code:
var newWindow = window.open( '','','scrollbars=yes,menubar=no,height=460,width=960,resizable=yes,toolbar=no,location=no,status=no');
newWindow.document.write( "text in new window goes here" );
newWindow.document.write( "text in new window goes here" );
newWindow.document.write( "text in new window goes here" );
newWindow.document.close();
newWindow.focus(); // this should bring the focus
Note..you should include the above script in a function...and call it when when you want the popup to appear. if you just dump it in a page as it is..it would just open the popup with every page refresh...not a lot people like that.
good luck
ess