var fDesc=new Array();
fDesc[0] = "The launcher allows you to create, edit and save FFXIV configurations. The game can be launched via the Launcher GUI, opening a Profile or passing a profile name via command line arguments. All profiles must reside in the Profiles folder under the install directory. To launch from the desktop simply create a shortcut to a given profile.
Features:
- Windows allowing you to alt tab out of full screen
- Allows dual boxing
- Advanced launcher for fast config changes and one click loading.";
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 = '';
}
}