Mike
John's, but there is one small problem. It does not return to the page that I want it to. The print dialog window opens, and the page can be printed, but I also need it to go to a different page, the LLORD.ASP page.
I don't remember for sure, but I think the document.print() JS function (which I assume you're calling from the printPage() function) won't return until the user deals with the print dialog. So you could probably add some JavaScript to redirect to the other page, e.g.
function printPage() {
document.print();
location.href = 'LLORD.ASP';
}"location.href" must be qualified but I forget the exact object... "top"? I'm getting old :(
WLD should have no problem in picking up the ASP page name within JavaScript and inserting the appropriate URL.
HTH,
Ram�n
