function checkCheckBox(f){

if (f.agree.checked == false )

{

alert("Please accept our terms and conditions to continue");

return false;

}else

return true;

}

function checkCheckBox(g){ if (g.affiliate.checked == false ) { alert("Please confirm that you have a Paypal Account before registering"); return false; }else return true; }

function checkAffiliateBox(h){ if (h.agree.checked == false ) { alert("Please accept our Affiliate Terms and Conditions to continue"); return false; }else return true; }

