var fDesc=new Array();
fDesc[0] = "Do you have to run the same tasks over and over again, each and every day?
Why not use BuildIT to automate those tasks, whether it is the final packaging of a product, an automated daily build, maybe sending out a mailing list, even backing-up files?
Main features:
-Easy to use interface utilising drag 'n' drop and context menus
-Many specific tasks ranging from file management to executing JavaScript
-Use the supplied command line tool, for scheduling tasks
-Assign administrators to receive progress reports, and owners for each task
-Output to a log file or output window in two different ways
-Customise e-mail messages";
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 = '';
}
}