function oneTimeTextareaClear() {
	//document.getElementById('recipientsTextarea').innerHTML = '';
	oneTimeTextareaClear = function () { };
}

(function primePlaxoTrigger() {
	document.getElementById('recipientsTextarea').onfocus = function () { oneTimeTextareaClear(); }
	var plaxoTrigger = document.getElementById('plaxoTrigger');
	if(document.all)
		plaxoTrigger.onclick = function () { 
			oneTimeTextareaClear(); 
			showPlaxoABChooser('recipientsTextarea', '/plaxocb.html'); 
			return false;
		}
	else
		plaxoTrigger.setAttribute('onclick',"oneTimeTextareaClear(); showPlaxoABChooser('recipientsTextarea', 'plaxocb.html'); return false;");
	plaxoTrigger.innerHTML = '[address book]';
})();

function onABCommComplete() { 
	/* OPTIONAL: do something here after the new data has been populated in your text area */ 
}
