I just purchased aMember Pro and am really liking the software. My problem is that I am using it within my existing website by doing the <iframe> tag. When my customer wants to signup or renew with Paypal as the processing system, when they hit the order button the Paypal site comes up in my frame. Is there a way to have the Paypal site open in a different browser? Thanks for your response. Rachael
I'm not really using aMember, but normally you would just add target="_blank" to the form that invokes PayPal. So inted of this: Code: <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> You would do this: Code: <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank"> -nic