var fDesc=new Array();
fDesc[0] = "2002, British intelligence receives information about the contract between the terrorists and the official authorities of Afghanistan, but they deny the presence of terrorists, calling it a military exercise. Because of this, convened a secret Council of the UN, during which it was decided to send a British agent James Tennant for espionage and sabotage the plans of terrorists on the base, which is located a couple of kilometers from the port town of Gwadar...";
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 = '';
}
}