Abend,
<script ...>
function doit() {
// inhalt ändern...
document.fname.willy.value="http://"+document.fname.willy.value;
//oder direkt weiter...
document.location.href=document.fname.willy.value;
}
</script>
<form name="fname">
<textarea name="willy">Hier der Text</textarea>
<a href="javascript:doit()">los!</a>
</form>
Gruß Jan