I have a script that creates/displays invoices for customers on the screen for a chosen time-frame. I also have a "print" feature (javascript) to send the screen to the printer. Right now the script produces the invoices for ALL customers in a "while" loop. However, I want the script to stop after each statement with the option to print, continue or cancel. How do I interrupt the while loop after each statement? This was easy in C with a "goto"!