var fDesc=new Array();
fDesc[0] = "XnaLara Realtime Posing Program allows you all to play around with character models from TRU in realtime. Also, you don't need Tomb Raider: Underworld to run this program.
It integrates a extended Camera parameters window where it is possible to manually change/edit all parameters of the camera: the location of the camera target/pivot, the distance from it, the angles of horizontal and vertical rotation (around the target/pivot) and the field of view.";
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 = '';
}
}