See if this code fit your heart's desire 
I'll separate the presentation (JS) from the markups (html).
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
window.onload = function()
{
document.getElementById('input').onblur = function()
{
document.getElementById('receive').value=this.value.substring(3);
this.value=this.value.substring(0,3);
}
}
</script>
<body>
<textarea id="input"></textarea>
<textarea id="receive"></textarea>
</body>
</html>
Bookmarks