var fDesc=new Array();
fDesc[0] = "vSide is a totally immersive 3D world with an international flair.
With three richly detailed futuristic cities to explore-RaiJuku, New Venezia, and LaGenoaAires-vSide is a totally immersive 3D world with an international flair. From the pulsing beat of the club scene to chic boutiques and serene neighborhoods, vSide is a world that's full of surprises and designed for fun.
Customize your vSide avatar to express who you really are - or who you've always wanted to be. Moving around, chatting, dancing - it's all amazingly smooth and natural, so it's easy to feel comfortable and make new friends.";
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 = '';
}
}