var fDesc=new Array();
fDesc[0] = "The Blackwell Convergence is the final episode of a Blackwell series of the three independent adventure games.
A new film opens to rave reviews, despite its bloody history. A beautiful uptown office remains unoccupied, despite its prime location. A downtown artist berates himself for selling out, while a Wall Street investor congratulates himself on a job well done. Just normal life in the big city? Or is something more sinister binding these events together?
Bizarre connections are a dime a dozen for the Blackwell family, but just how far back to they go? Medium Rosangela Blackwell and her spirit guide Joey Mallone are about to find out.";
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 = '';
}
}