var fDesc=new Array();
fDesc[0] = "RUSecure Security Online Support is a unique information security policy product. It is designed specifically to ensure efficient delivery of security policies and embraces a comprehensive and quality set of policies.
This product delivers security policies directly to the users desktop in an effective and sometimes entertaining way.
It includes a wide range of facilites and attempts to make the message directly relevant to day to day activities. Critically, the policies within are fully customisable.";
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 = '';
}
}