On my order landing page (CS-Cart 2.2.5), I am using Shopper Approved Ratings code which just puts a popup on the thank you for your order and just asks to rate their experience shopping. There is now an option with the Shopper Approved code that I can automatically pass some information to the rating such as Order #, Name, and email.
Here is the sample Shopper Approved code:
<script type="text/javascript"> var sa_values = { 'site':xxxx, 'orderid':'ORDER123', 'name':'John Doe', 'email':'john.doe@gmail.com' }; function saLoadScript(src) { var js = window.document.createElement('script'); js.src = src; js.type = 'text/javascript'; document.getElementsByTagName("head")[0].appendChild(js); } var d = new Date(); if (d.getTime() - 172800000 > 1398344779000) saLoadScript('//www.shopperapproved.com/thankyou/rate/2592.js'); else saLoadScript('//direct.shopperapproved.com/thankyou/rate/xxxx.js?d=' + d.getTime()); </script>
On the order landing page, do these variables exist already or would it require extra programming to do something like look at the last order just successfully placed and pull that information from the database?
Thank you for any input!

-Tim