/*Boxhandling*/
function boxhandling(box,displayaction,nexticon,oldicon) {


if(displayaction == 'none') { var nextdisplay = 'block';}
             else {var nextdisplay = 'none';}
                 
document.getElementById(box).style.display=displayaction;
        
var report = document.getElementById(box+'head');
var nexthandling='boxhandling("'+box+'","'+nextdisplay+'","'+oldicon+'","'+nexticon+'");'
              
report.innerHTML = '<img src="'+   mapimgpath+'/'+nexticon+'" border=0 onClick='+nexthandling+'>';  

if( document.getElementById('cat').style.display == 'block')
             {document.getElementById('strsearchhead').style.top='374px';
              document.getElementById('strsearch').style.top='397px';
             }
               
 else    
             { document.getElementById('strsearchhead').style.top='24px';
               document.getElementById('strsearch').style.top='48px';
             }
}

