//<![CDATA[
function insert(what) {
var message_text = document.forms["post"]["message_text"];
var format = new Array(
new Array("subtopic", "bold", "italic", "underline", "link"),
new Array("", "", "", "", ""),
new Array("", "", "", "", "")
);
var input = prompt("Type in the text you want to be "+what+".", "");
for(var n=0; n<format[0].length; n++) {
if(what == format[0][n]) {
if(input == null) {
break;
} else {
document.post.message_text.value += format[1][n] + input + format[2][n];
break;
}
}
}
}
//]]>
