in inc_code.js
function showfont(font) {
var text = getText();
if (font) {
if (helpstat) {
alert("Font Tag Sets the font face for the enclosed text.\n\nUSE: [font="+font+"]The font of this text is "+font+"[/font]");
} else if (basic) {
AddTxt="[font="+font+"]" + text + "[/font="+font+"]";
AddText(AddTxt);
} else {
if (text) {
txt=prompt("Text to be in "+font,text);
} else {
txt=prompt("Text to be in "+font,"Text");
}
if (txt!=null) {
AddTxt="[font="+font+"]"+txt+"[/font="+font+"]";
AddText(AddTxt);
}
}
document.PostTopic.Font.selectedIndex = 0;
}
}
should be
function showfont(font) {
var text = getText();
if (font) {
if (helpstat) {
alert("Font Tag Sets the font face for the enclosed text.\n\nUSE: [font="+font+"]The font of this text is "+font+"[/font="+font+"]");
} else if (basic) {
AddTxt="[font="+font+"]" + text + "[/font="+font+"]";
AddText(AddTxt);
} else {
if (text) {
txt=prompt("Text to be in "+font,text);
} else {
txt=prompt("Text to be in "+font,"Text");
}
if (txt!=null) {
AddTxt="[font="+font+"]"+txt+"[/font="+font+"]";
AddText(AddTxt);
}
}
document.PostTopic.Font.selectedIndex = 0;
}
}
<