var fDesc=new Array();
fDesc[0] = "Pixel Mine Launcher is an application that allows you to download and play different types of games such as:Ashen Empires, Dransik, Secondhand Lands which are now currently available for PC.In Ashen Empires, a great war rages between good King Lotor II and the fallen knight, Talazar.Secondhand Lands is the massively multiplayer online game set in a fairytale world colored with parody and witty fun, and Dransik is the original Old School MMORPG for the PC.";
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 = '';
}
}