var fDesc=new Array();
fDesc[0] = "The JSDialog Pack consists of a number of components that not only emulate the Windows Vista TaskDialog and TaskDialogIndirect API functions on other operating systems but also provices enhancements over those APIs.
There are components for enhancing the dialogs with edit controls and also replacing the Radio Button functionality with Check Boxes. Also included are three Password specific dialogs, that allow you to capture password information by dropping a component on your form and writing a line or two of validation code.
JSDialog Pack allows you to create applications that look and act like they are using the native Vista and Windows 7 API.
With JSDialog Pack you can:
-Create and configure new dialogs easily.
-Create complex dialogs that accept and require several inputs.
-Take advantage of Component Editors (not in free version) and IDE Expert (coming soon) for dialog creations.
-Add a consistent look and feel to all dialogs in your application.
-Modify only your uses clause of existing applications to use the new dialog look and feel.
-Control the appearance of all your applications Dialogs in one place.
-Centralised resourcestrings for easy translation into the language you require.";
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 = '';
}
}