var fDesc=new Array();
fDesc[0] = "The Second Sino-Japanese War is part of the World War II, but this brutal war in Asia was, for a long time, forgotten by the world. The war in Europe lasted six years, while the war in China lasted eight years. Moreover, Chinese resistance against the invasion had already started since 1931, following the 918 Incident, also known as the Mukden Incident.
Decades of war and conflict led to thousands and millions of casualties within China, and the Chinese people persevered through a national crisis of unprecendented suffering. "Company of Heroes: Far East War" is a modification for Company of Heroes, the product of years of work from many skilled modders from various countries and regions, who hold a great sense of historical responsibility.";
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 = '';
}
}