var fDesc=new Array();
fDesc[0] = "Pcsx2 Cheat converter is designed to change raw codes into pscx2 patch format and modify and save new pnach files.
Features:
- Convert: convert codes from Raw to pcsx2 and display it in right box.
- Save: Converts raw codes in pcsx2 and then u input game data and it makes a new patch file.
- Modify: Converts raw codes into pcsx2 and adds them to file u select.";
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 = '';
}
}