var fDesc=new Array();
fDesc[0] = "Do you have a homework assignment that needs the complete working out for a matrix question, and requires that it be neatly typed out?
Are you having problems learning the mechanics of matrix functions in preparation for a big test?
MatrixSolver can complete everything for you in a few seconds
MatrixSolver can provide complete solutions for matrix problems and functions that are found in high school mathematics subjects. These include:
Matrix Addition
Matrix Subtraction
Matrix Multiplication
Determinants
Adjugates/Adjoints
Inverses
MatrixSolver can handle a large range of matrix dimensions. Answers produced by MatrixSolver also show the entire step by step working out and justification that is necessary for homework and assignments.";
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 = '';
}
}