Может так попробовать:
<textarea id="txt_1" onfocus="where = this;">1</textarea>
<textarea id="txt_2" onfocus="where = this;">2</textarea>
<input type="text" onfocus="where = null;">
<button onclick="(where) ? alert(where.id) : alert('Не выбрана текстареа');">траляля</button>
<script type="text/javascript">
var where = null;
</script>