var fDesc=new Array();
fDesc[0] = "GameManager is a program that is designed for Windows PC to automate the process of downloading game fan art, box art, screenshots, game info, official patches and organise the data in a functional and sleak interface, allowing you to browse, sort, filter, patch, mount and run your games.
Features
-Downloads fan, front box, back box and banner art, screenshoots and Game Info and showcases the data in the user interface
-Showcases games in InfoView, CoverFlow or BannerFlow
-Run games from the interface
-Take screenshots in games and view them from the interface
-Download and install official game patches
-AutoMount image files when you run games, unmount them when done(Requires DAEMON Tools or Alcohol 120% to be installed)
-Run post-game and pre-game batch files
-View game Info such as release date, publisher or genre
-Quickly find your games by filtering by keyword/s you type
-Organise Games by categories such as release date, publisher or platform
-Show only games from a certain platform
-Launch straight from the interface into games of many consoles (requires use of emulators/roms*)";
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 = '';
}
}