// added this function because the function in quicktags.js
// puts "close tags" and "dictionary" buttons on the bar I find
// to be unnecessary
function edToolbar2() {
document.write('
');
for (i = 0; i < edButtons.length; i++) {
edShowButton(edButtons[i], i);
}
document.write('
');
}
var edButtons = new Array();
edButtons[edButtons.length] =
new edButton('ed_strong'
,'B'
,''
,''
,'b'
);
edButtons[edButtons.length] =
new edButton('ed_em'
,'I'
,''
,''
,'i'
);
edButtons[edButtons.length] =
new edButton('ed_link'
,'link'
,''
,''
,'a'
); // special case
edButtons[edButtons.length] =
new edButton('ed_block'
,'blockquote'
,''
,'
'
,'q'
);