var fDesc=new Array(); fDesc[0] = "The MpqViewer is a tool to view and extract files from *.mpq archive files used by Blizzard. It's written in C# so you have to install Microsoft .NET Framework 2.0 or higher and it utilizes the C# MpqLibrary.
Functions:
-extract any file from any *.mpq archive
-view files directly from the archive, without the need to export
-convert *.blp to *.png images by default on extraction
-filtering of the displayed file list
-scripting through lua (http://www.lua.org) and the luanet api (http://www.lua.inf.puc-rio.br/luanet/)"; 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 = ''; } }