I have become a merchant as you can see here (pay per sale): http://www.clixgalore.com.au/AffSelectProgram.aspx?AdvProgID=11044 But we are having issues with the thankyou page! We have set all the correct token values in paypal, and have set the autoreturn correct from paypal going to our thank you page. This is the code we needed to add to our thankyou.php page. <!--Begin clixGalore Code --> <script language="javascript"> var arrParams = location.search.split("?")[1].split("&"); var SV = ''; var OID = ''; var temp = ''; if(location.search.indexOf("?")!=-1) { if (arrParams) { for (i=0;i<arrParams.length;i++) { var param=arrParams.split("="); temp = param[0]; if(temp.toLowerCase()=="amt") { SV = param[1] } if(temp.toLowerCase()=="tx") { OID = param[1] } } } } document.write ('<img src="https://www.clixGalore.com/AdvTransaction.aspx?AdID=11088&SV=' + SV + '&OID=' + OID + '" height="0" width="0" border="0">'); </script> <!--End clixGalore Code --> Can someone please help us with this?