function dirMenu(BRCODE, target){
if(document.all){
if (document.all['pullmenu' + BRCODE].style.display == 'none'){
document.all['pullmenu' + BRCODE].style.display = "block";
document.images['icon_img' + BRCODE].src = "/img/diropen.gif";
location.href = target;

}else{
document.all['pullmenu' + BRCODE].style.display = "none";
document.images['icon_img' + BRCODE].src = "/img/dirclose.gif";
}
}
if(document.layers){
if (document.layers['pullmenu' + BRCODE].display == 'none'){
document.layers['pullmenu' + BRCODE].display = "block";
document.images['icon_img' + BRCODE].src = "/img/diropen.gif";
}else{
document.layers['pullmenu' + BRCODE].display = "none";
document.images['icon_img' + BRCODE].src = "/img/dirclose.gif";
}
}
if(!document.all && document.getElementById){ 
if (document.getElementById('pullmenu' + BRCODE).style.display == 'none'){
document.getElementById('pullmenu' + BRCODE).style.display = "block";
document.images['icon_img' + BRCODE].src = "/img/diropen.gif";
}else{
document.getElementById('pullmenu' + BRCODE).style.display = "none";
document.images['icon_img' + BRCODE].src = "/img/dirclose.gif";
}
}
}
