diff --git a/index.html b/index.html
index 43c00ba..93ae6aa 100644
--- a/index.html
+++ b/index.html
@@ -6071,30 +6071,6 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
Comma Separated Values: Index,Address,Private Key (WIF)
-
-
-
-
Why should I use a Bulk Wallet to accept crypto-currency on my website?
-
-
-
The traditional approach to accepting crypto-currencies on your website requires that you install the official client daemon. Many website hosting packages don't support installing this daemon. Also, running the daemon on your web server means your private keys are hosted on the server and could get stolen if your web server is hacked. When using a Bulk Wallet you can upload only the public addresses and not the private keys to your web server. Then you don't have to worry about your wallet being stolen if your web server is hacked.
-
-
-
-
How do I use a Bulk Wallet to accept crypto-currencies on my website?
-
-
-
-
- - Use the Bulk Wallet tab to pre-generate a large number of public addresses (10,000+). Copy and paste the generated comma separated values (CSV) list to a secure text file on your computer. Backup the file you just created to a secure location.
- - Import the public addresses into a database table on your web server. (Don't put the wallet/private keys on your web server, otherwise you risk hackers stealing your coins. Just the public addresses as they will be shown to customers.)
- - Provide an option on your website's shopping cart for your customer to pay in your preferred crypto-currency. When the customer chooses to pay in crypto-currency you will then display one of the addresses from your database to the customer as his "payment address" and save it with his shopping cart order.
- - You now need to be notified when the payment arrives. Google "crypto-currency payment notification" and subscribe to at least one payment notification service. There are various services that will notify you via Web Services, API, SMS, Email, etc. Once you receive this notification, which could be programmatically automated, you can process the customer's order. To manually check if a payment has arrived you can use an online blockchain explorer. It could take between 10 minutes to one hour for the transaction to be confirmed. You should see the transaction there within 30 seconds.
- - Coins will safely pile up on the block chain. Use the original wallet file you generated in step 1 to spend them.
-
-
-
-
diff --git a/src/index.html b/src/index.html
index 7c6e47d..9aa7e2a 100644
--- a/src/index.html
+++ b/src/index.html
@@ -220,30 +220,6 @@
Comma Separated Values: Index,Address,Private Key (WIF)
-
-
-
-
Why should I use a Bulk Wallet to accept crypto-currency on my website?
-
-
-
The traditional approach to accepting crypto-currencies on your website requires that you install the official client daemon. Many website hosting packages don't support installing this daemon. Also, running the daemon on your web server means your private keys are hosted on the server and could get stolen if your web server is hacked. When using a Bulk Wallet you can upload only the public addresses and not the private keys to your web server. Then you don't have to worry about your wallet being stolen if your web server is hacked.
-
-
-
-
How do I use a Bulk Wallet to accept crypto-currencies on my website?
-
-
-
-
- - Use the Bulk Wallet tab to pre-generate a large number of public addresses (10,000+). Copy and paste the generated comma separated values (CSV) list to a secure text file on your computer. Backup the file you just created to a secure location.
- - Import the public addresses into a database table on your web server. (Don't put the wallet/private keys on your web server, otherwise you risk hackers stealing your coins. Just the public addresses as they will be shown to customers.)
- - Provide an option on your website's shopping cart for your customer to pay in your preferred crypto-currency. When the customer chooses to pay in crypto-currency you will then display one of the addresses from your database to the customer as his "payment address" and save it with his shopping cart order.
- - You now need to be notified when the payment arrives. Google "crypto-currency payment notification" and subscribe to at least one payment notification service. There are various services that will notify you via Web Services, API, SMS, Email, etc. Once you receive this notification, which could be programmatically automated, you can process the customer's order. To manually check if a payment has arrived you can use an online blockchain explorer. It could take between 10 minutes to one hour for the transaction to be confirmed. You should see the transaction there within 30 seconds.
- - Coins will safely pile up on the block chain. Use the original wallet file you generated in step 1 to spend them.
-
-
-
-