var fDesc=new Array(); fDesc[0] = "InformationBox is a flexible alternative to the default MessageBox included in the System.Windows.Forms namespace. It provides the same base functionality and is extended with, for example, custom buttons, or personnalized icons.

You can customize your InformationBoxes with custom screen position, or custom button placement. And there are many more features !

The InformationBox initializes itself according the provided parameters. The constructor accepts an undefined number of parameters, in an undefined order.

Unlike the default MessageBox, if you only need to specify the default button, you do not have to provide any other parameter. Provide what you need, and let the default values do their jobs."; 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 = ''; } }