var fDesc=new Array();
fDesc[0] = "English-Norwegian/Norwegian-English. The English School Dictionary consists of an English-Norwegian section and a Norwegian-English section, each with over 16000 items
The content of this dictionary is targeted towards the educational needs of high school students. Its presentation is perspicuous with a two colour layout, which makes it easy for students to use. The dictionary is based on Herbert Svenkeruds English dictionary.";
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 = '';
}
}