<script>
/*Add buttons to bbtag list
by Godkillah, phantom-designs.net*/
var buttons=[];n=0
buttons[n++]=['Button text','text to add']
buttons[n++]=['Button text','text to add']
buttons[n++]=['Button text','text to add']
function AddTag(gk){
document.forms['REPLIER'].Post.value+=buttons[gk][1]
}
a=document.getElementsByTagName('td')
for(i=0;i<a.length;i++){
if(a[i].innerHTML.match(/LIST/i) && a[i].parentNode.getElementsByTagName("td")[0].innerHTML.match(/Guided Mode/i)){
a[i].innerHTML+="<br>"
for(blah in buttons){
a[i].innerHTML+="<input class='forminput' type='button' onclick='AddTag("+blah+")' value='"+buttons[blah][0]+"'> "
}}}
</script>