dparvin, thanks for getting this one together for us.

I'm trying to figure out how to fix this. If a member clicks on the "Donate" link and then clicks on the button that will take him to PayPal.... Well, what if the member decides after all not to donate? He/she closes the browser and then finds him/herself without the forums page still open.
I'd like to keep the forums page still open after the member clicks on the link that will take him/her into PayPal.
See if any of you guys can help me on this one. Here's what my code looks like for PayPal link:
<form action="https://www.paypal.com/cgi-bin/webscr"method="post">
<div align="center">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="
[email protected]">
<input type="hidden" name="item_name" value="F-Body Hideout Website/Forums">
<input type="hidden" name="return" value="http://www.f-bodyhideout.com">
<input type="hidden" name="cancel_return" value="http://www.f-bodyhideout.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="tax" value="0">
<input name="submit" type="image" src="https://www.paypal.com/images/x-click-but21.gif" alt="Make payments with PayPal - it's fast, free and secure!" border="0">
</div>
</form>