Chile,
<!DOCTYPE html>
<html>
<head>
<title>Forms</title>
<script type="text/javascript">
function highlight(id){
var elem = document.getElementById(id);
elem.focus()
elem.select()
}
</script>
</head>
<body>
<form id="editor" name="editor" action="#">
<label>Description</label>
<textarea id="description"></textarea>
<label>Abstract</label>
<textarea id="abstract"></textarea><br>
<input type="button" value="Select All Description" onclick="highlight('description')" onmouseover="window.status='';return true" />
<input type="button" value="Select All Abstract" onclick="highlight('abstract')" onmouseover="window.status='';return true" />
</form>
</body>
</html>