if (typeof(document.messageform.text.selectionStart)!='undefined')
{
start=document.messageform.text.selectionStart;
end=document.messageform.text.selectionEnd;
if (start!=end)
{
markedtext=document.messageform.text.value.substr(start,end-start);
document.messageform.text.value=document.messageform.text.value.substr(0,start)+"["+format+"]"+markedtext+"[/"+format+"]"+document.messageform.text.value.substr(end);
}
}
else if (typeof(document.selection)!='undefined')
{
range=document.selection.createRange();
markedtext=range.text;
if (markedtext.length>0)
{
range.text="["+format+"]"+markedtext+"[/"+format+"]";
}
}