var fDesc=new Array();
fDesc[0] = "MERV, which stands for monitoring and evaluation of the restoration of vegetation, is a tool to help facilitate implementation of monitoring and tracking on ground works and outcomes.
MERV has been designed so it is easy to use by a range of NRM practitioners, including state and local government agencies, Landcare and other community groups, contract implementers, environmental consultants, students and private landowners.";
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 = '';
}
}