We are using PayPal Website Payments Standard to accept payments on an online store we have implemented. Right now when we send customers off to PayPal to pay we assume that they have abandoned their orders until we get an IPN response from PayPal telling us differently. Is there a better way to do this? Many of of our store managers aren't tech savvy, and so when they see new orders marked as "abandoned" they get nervous. Looking through PayPal's IPN documentation it doesn't look like there is a notification for abandoned carts. The only other way I could think to do this would be to initially mark an order as pending and then have some kind of service that runs periodically to mark orders as abandoned. Maybe if we haven't received a Paypal IPN notification for the order in over 24 hours or something? Has anybody else tried this? Or does anybody else have other ideas for how to do this? I haven't been able to find in PayPal's documentation any kind of expiration time for a payment request.
EDIT
Our store uses ASP.Net WebForms running on IIS 7.0 with a SQL Server database.