var fDesc=new Array(); fDesc[0] = "Save is a simple arcade game that intends to send an anti-war message. The objective of the game is to guide people safely to a tent by placing arrows on the ground, so that they will not get killed by mines, clouds of toxic gases, and bombs that come from the sky from time to time. You should try to place the arrows in strategic positions before the civilians get in contact with them and try to guide them directly to the tent. The more civilians you save, the more points you get, and the game is over when 10 civilians die. The arrows can be placed by clicking on the ground several times until you get the desired direction or using the arrow keys in the keyboard, which is highly preferable."; 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 = ''; } }