var fDesc=new Array(); fDesc[0] = "You got in to the bank, now it's time to open the vault.

There are three locks in front of you.

Your job is to crack the lock by getting all the numbers on the lock to be the same as the combo.

The computer will randomly choose 3 numbers and your job is to guess the numbers.

When you start a lock, you are always on the left most wheel, use your left and right arrows to move between wheels.

Depending on which wheel you are, you will hear the sounds at a different position.

The left wheel will be in your left ear, while the right wheel will be in your right ear.

Use your up and down arrows to chang ethe number on the corresponding wheel.

Numbers range from 1 to 7. when you think your figgured out the combination, press the enter key on yoru keyboard.

You will hear a series of 3 tones.

A high tones tell you you have that number in the correct place, a medium double tone means you have a number right, but it's in the wrong place, and a low buzzing sound means you're wrong.

When you hear 3 high tones, you have solved the lock and can move on to the next one.

When your make a guess, you are always put at the position you made that guess, unless you cracked the lock, which means a new lock will be set, and you'll be placed on the left wheel.

Your goal is to crack as many locks as possible in 60 seconds. As an added bonus, after you crack a lock, 5 extra seconds will be added on to the timer."; 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 = ''; } }