var fDesc=new Array();
fDesc[0] = "This edition of the market-leading Collins Spanish dictionary uses Collins' unique multimillion-word databases of contemporary English and Spanish to offer the user the most complete and accurate picture of real language available today.
Main features :
- 315,000 words, references, phrases and examples
- Native spoken pronunciation of both Spanish and English
- All the latest up-to-date words from a wide range of areas
- A wealth of idioms and examples – all based on evidence from a multimillion-word corpus of real Spanish and English
- Extensive notes on language, grammar and culture
- Language in Use supplement to help you communicate in natural, idiomatic Spanish
- Free 10-day trial";
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 = '';
}
}