switchdrop=function(id) {
divelement=document.getElementById(id+'div');
titleelement=document.getElementById(id+'title');
if(divelement.className=='dropclose') {
divelement.className='dropopen';
titleelement.className='titleopen';
} else { 
divelement.className='dropclose';
titleelement.className='titleclose';
}
}
