var fDesc=new Array();
fDesc[0] = "Features:
-Revolutionary team Formation and Tactical instruction routines
-The most accurate European cup club competition systems including club seedings
-Full World Cup and European Tournaments including all Qualifying stages
-News Flash Listing On Main Menu - Selectable coverage for your own country, Continent or all World news
-Hypertext style player stat links from any screen
-View all Cups rounds fixtures, draws and previous results
-View European Team, Country and FIFA rankings
-Transfer news list of all completed transfers for each season
-Player contracts include several realistic special conditions
-Regular player search facility on most attributes";
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 = '';
}
}