var fDesc=new Array();
fDesc[0] = "Use this kit to obtain your own uncontested divorce in Alberta and save hundreds of dollars in Lawyers’ fees.
The kit contains a simple, step-by-step guide, written by an Alberta lawyer, and all the necessary forms specific to the laws of Alberta, on CD-ROM.
Use this kit when:
-Both parties want a divorce
-At least one spouse has resided in Alberta for the last year
-There are no disputes over child custody, property, or spousal support";
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 = '';
}
}