sub postal_login { my ($paymentmethod) = $_[0]; my $currentbalance = &priceformat($form{'balance'},"html"); my $payment; $payment = &parsebid($form{'balance'} * -1) if ($form{'balance'} < 0); if ($paymentmethod eq "paypal") { &oops ('PayPal Payment Not Allowed At Present') unless ($config{'allowpaypal'} == 1); print <<"EOF";

PayPal Payment.

This form will allow you to make a PayPal payment to your account at $config{'sitename'}
Registration is required.
Your Username:
Required for verification
Your Password:
Required for verification
Notes:
Any additional notes
Enter The Amount You Wish To Pay
Current Balance $currentbalance

$config{'currency'}


EOF } else { &oops ('Postal Payment Not Allowed At Present') unless ($config{'allowpostal'} == 1); print "

Postal Payment

\n"; print "Current Balance $currentbalance

" if ($form{'balance'}); print <<"EOF"; This form will allow you to make a postal payment to your account at $config{'sitename'}
Your Check or Money Order should be made payable to $config{'postal_add1'}

You may include any additional notes in the form field provided.
Please allow up to 10 Days for verification, Thank You.
Registration is required.
Your Username:
Required for verification
Your Password:
Required for verification
Amount:
The amount you wish to pay
$config{'currency'}
Notes:
Any additional notes
By Pressing Continue You Agree
To Send The Above Stated Amount.
EOF } }