var fDesc=new Array();
fDesc[0] = "In the latest TV commercial for the BMW Z4, artist Robin Rhode uses the roadster as a 306hp paintbrush to create a performance that's as colorful as it is unique.
Now you can recreate the experience using state-of-the-art 3D technology. If you have a webcam you'll be able to get behind the wheel of your own virtual BMW Z4 and use it to express yourself.";
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 = '';
}
}