function toggleArea(elem){
var a=elem.parentNode.getElementsByTagName('div')[0];a.style.display=a.style.display=='none'?'block':'none';
}