var fDesc=new Array();
fDesc[0] = "Build and order your own custom GLOCK with the GLOCKMEISTER's Build-A GLOCK app.
Main features:
- Highl detailed 3D model.
- Interact with the guns in operate mode, with four levels of X-Ray and two levels of slow motion.
- Enjoy five game modes: Demo, Operation, Disassembly, Assembly and Game.
- Various castomization available (20 accessories).
- 42 parts for disassembly (manual step-by-step disassembly with multi hints are available).";
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 = '';
}
}