
function mkBold() {
	window.document.fxBox.f_text.value += "[B]" + window.prompt("Type the text you need bold:", "") + "[/B]";
}

function mkUl() {
	window.document.fxBox.f_text.value += "[U]" + window.prompt("Type the text you need underlined:", "") + "[/U]";
}

function mkItalic() {
	window.document.fxBox.f_text.value += "[I]" + window.prompt("Type the text you need in italics:", "") + "[/I]";
}

function refreshTBoxF () {

	obj = window.document.fxBox.f_text;

	if (obj.value == "(Message here)") {
		 obj.value = "";
	}
}

function refreshTBoxB () {

	obj = window.document.fxBox.f_text;

	if (obj.value == "") {
		obj.value = "(Message here)";
	}
}