i am also getting the same problem what glaba had,
if i use window.close() at end then IE close the popup window after printing is done , but in Netscape the popup
window is closed without invoking printer.
i am sending the Javascript please give me
the solution
function printit()
{
prevwnd=window.open("","print","width=400,height=480,
scrollbars=yes,resizeable=yes,status=0"

;
prevwnd.document.open();
prevwnd.document.writeln('<html><head><title></title>');
prevwnd.document.writeln('</head>');
prevwnd.document.writeln('<body onLoad="self.print()" bgcolor="#ffffff" ><form name="prntform">');
prevwnd.document.writeln("some message here"

;
prevwnd.document.writeln('</form></body></html>');
prevwnd.document.close();
prevwnd.close();
}
please help me how to close this window after printing in
Netscape