var fDesc=new Array();
fDesc[0] = "Overview:
Hit the throttle and accelerate through the the fantastic world of Stardrone.
Blast into spiral twists and the topsy-turvy challenges of Andromeda in this high-octane thriller. Cause your attackers to crash with rapid speed while collecting gems and power-up enhancements. Soar through 50 levels of puzzle-solving, adrenaline-pumping action while eluding zillions of enemies. Overcome perilous hazards and you`ll reign supreme in Stardrone.
Game Features:
- High-speed Action thriller with unique, intuitive gameplay
- Over 50 challenging levels
- Multiple power-ups
- Gorgeous visuals and stunning sound FX and music";
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 = '';
}
}