
function ahrefThis() {
	strSelection = document.selection.createRange().text
	if (strSelection == "") { 
		document.newtopic.message.focus(); 
	}
	else {
		strHref = prompt("URL:","http://");
		if (strHref == null) return;
		document.selection.createRange().text = '[URL=' + strHref + ']' + strSelection + '[/URL]';
	}
	return;
}


function boldThis(from) {
strSelection = document.selection.createRange().text
	if (strSelection == "") {
		document.newtopic.message.focus()
		if (from == 2) document.newtopic.message.select()
		strSelection = document.selection.createRange().text
		document.selection.createRange().text = strSelection + "[B][/B]";
	}
	else document.selection.createRange().text = "[B]" + strSelection + "[/B]";
	return;
}





function italicThis(from) {
strSelection = document.selection.createRange().text
if (strSelection == "") {
document.newtopic.message.focus()
if (from == 2) document.newtopic.message.select()
strSelection = document.selection.createRange().text
document.selection.createRange().text = strSelection + "[I][/I]";
}
else document.selection.createRange().text = "[I]" + strSelection + "[/I]";
return;
}