Hi, all the JavaScript experts! PayPal generates code to insert on a webpage to buy products, resembling this: [COLOR="Green"]<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="1234567"> <input type="hidden" name="on0" value="Price + postage">Price + postage <select name="os0"> <option value="Price + postage France">Price + postage France €00,00</option> <option value="Price + postage CEE or Switzerland">Price + postage CEE or Switzerland €00,00</option> <option value="Price + postage Other Countries">Price + postage Other Countries €00,00</option>[/COLOR] </select> <br> <input type="hidden" name="currency_code" value="EUR"> <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_SM.gif" name="submit" alt="PayPal"> </form> Code (markup): This has two functions: 1. Choose the product and region (in green); 2. PayPal buy now button to go to the PayPal site and complete the order. Can anyone help me to add JS to this script that opens a window asking the client to first agree to terms and conditions on the site BEFORE taking them to the PayPal site ('I agree' and 'I do not agree' buttons). If the 'I agree' button is clicked the transfer to the PayPal site continues. If 'I do not agree' is clicked, the window closes and the client remains on the webpage. I tried, but whether I click the agree or do not agree button, the PayPal site opens! Any help will be highly appreciated - and the angels will smile on you!! Not to mention the cheers you will receive from everyone else who is looking for the same thing!! Thank you.