var fDesc=new Array();
fDesc[0] = "PQR software is the EPPO database on quarantine pests.
PQR gives access to data on:
- all the pests of the EPPO A1 and A2 lists and of EU Directive 2000/29, appearing in the EPPO/CABI publication "Quarantine Pests for Europe" (2nd edition)
- pests added to these lists since that publication
- pests of the EPPO Alert List
- plants of the EPPO List of invasive alien plants
- many other quarantine pests and invasive plants of interest to other regions of the world (data obtained from FAO, CABI or from the RPPOs).";
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 = '';
}
}