var fDesc=new Array();
fDesc[0] = "Crawford College North Coast is an easy-to-use tool that pushes information directly to parents. It's simple, it's immediate and it's cost-effective. And it requires almost no effort on the part of parents.
Benefits :
- A direct channel between school and parents
- Up-to-date news, events, timetables, contacts, photos and more
- Parents receive only news that is relevant to them
- Easy to use, easy to manage, easy to update
- Real-time user statistics
- Mobile and SMS integration";
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 = '';
}
}