var fDesc=new Array();
fDesc[0] = "Awasu Professional Edition it is designed for information professionals, this edition contains the full set of features for monitoring and processing information.
Trial versions of the Awasu Professional Editions are available if you want to give them a go before purchasing.
These are fully-functional versions of Awasu that you will be able to use for a limited amount of time.";
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 = '';
}
}