var fDesc=new Array(); fDesc[0] = "Msgbox Maker is designed to help VB programmers to make popup message boxes. You dont have to remember the code to write, all you have to do is point and click. You will be able to preview what the message box will look like and when your ready click the copy button. The code will be placed in the clipboard ready to paste into you VB editor. Within the select case statements is where you place code depending on what button was selected."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }