var fDesc=new Array();
fDesc[0] = "MindFusion.Scheduling for WebForms is a programming control designed and built to provide any web application with a complete set of features for creating, customizing, saving and loading calendars, timetables, schedules and more. Its rich API ranges from numerous client-side events to CSS styles and themes. The tool is very easy to learn and use, there are numerous samples and step-by-step tutorials. It requires basic programming skills and lets even novice programmers create professional schedules and calendars in a matter of hours, not days or months.
Scheduling for WebForms provides intuitive programming interface with self-explanatory names of the fields, methods and events.";
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 = '';
}
}