var fDesc=new Array(); fDesc[0] = "Strolling along the streets of some city, you just can not pass by this miracle of modern motor-car construction - roadster Dodge Viper! Anyone who will give a look at it just once would like to jump in the car and take some drive around the city!"; 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 = ''; } }