var fDesc=new Array();
fDesc[0] = "Super Cars 3D is a wonder to behold. The video takes place in some secluded, beautiful island in Europe where you'll take a drive around the whole island in a super car, Ferrari or Mercedes.
Cruising around, you'll enjoy the pure shores, rippling water of the lake and a white yacht. Take the smell of the flowers as you pass green fields, listen to the twittering of the birds and take a sunset toward the end of the day. It's so peaceful that you may want to retire there someday.
In terms of graphics, the screensaver is a masterpiece. The graphics and music are simply stunning. The place is plush green with foliage. The scenery and the car look perfect, as real as you are going to get on a computer these days.
The camera, which lets you see your car, constantly zooms in and out from different angles to provide the best view of the car and surroundings.";
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 = '';
}
}