DSC, нда.... учитесь гражданин.
Code
<html>
<head>
<title>Change</title>
</head>
<body>
<textarea id='input'></textarea><br>
<input type='button' value='Change' onclick='change(document.getElementById("input").value)'><br>
<textarea id='result'></textarea>
</body>
<script>
function change(i){
document.getElementById('result').value=i
.replace(/(haha|hihi|huhu)/gi,'ohohoh')
.replace(/lol/gi,'muhaha');
}
</script>
</html>