How do I handle multiple text areas for email addresses?

You can update the cloudsponge options at run-time to reflect which textarea to put the contacts into.

<!DOCTYPE html>
<html>
<head>
<!--
Include the script anywhere on your page, usually in the head
(don't forget to replace `localhost-only` with your CloudSponge key)
-->
<script src="//api.cloudsponge.com/widget/localhost-only.js"></script>
</head>
<body>
<div style="float:left; padding-right:10px">
<a href="#" onclick="cloudsponge.init({textarea_id: 'contact_list_1'});return cloudsponge.launch();">Address Book 1</a><br/>
<textarea id="contact_list_1"></textarea>
</div>
<div style="float:left">
<a href="#" onclick="cloudsponge.init({textarea_id: 'contact_list_2'});return cloudsponge.launch();">Address Book 2</a><br/>
<textarea id="contact_list_2"></textarea>
</div>
</body>
</html>