var fDesc=new Array();
fDesc[0] = "Use this program to automatically fetch and calculate your IGNOU BCA or MCA percentage with just a click of a button.
Features:
- 1-click operation. all you need to do is enter your Enrolment number and press submit.
- Nice color/context formatted output.
- Result can be saved to an HTML file, to keep a record or take a printout.
- Keeps a history of enrolment numbers.
- All calculations based on IGNOU BCA/MCA programme guide.";
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 = '';
}
}