function clip(id, plus, minus) {

   if ( plus === undefined ) {
      plus = "templates/xbrandmal/images/symbols/right.gif";
   }
   if ( minus === undefined ) {
      minus = "templates/xbrandmal/images/symbols/down.gif";
   }



    with(document.getElementById(id).style){
        if(display=="none"){
            display="block";
            document.getElementById("img_" + id).src = minus; 
        }else if(display=="block"){
            display="none";
            document.getElementById("img_" + id).src = plus;
        } else {
            display="block";
            document.getElementById("img_" + id).src = minus; 
        }
    }
}

function clip_hide(id, plus, minus) {

   if ( plus === undefined ) {
      plus = "templates/xbrandmal/images/symbols/right.gif";
   }
   if ( minus === undefined ) {
      minus = "templates/xbrandmal/images/symbols/down.gif";
   }



    with(document.getElementById(id).style){
            display="none";
            document.getElementById("img_" + id).src = plus;
    }
}

function clip_show(id, plus, minus) {

   if ( plus === undefined ) {
      plus = "templates/xbrandmal/images/symbols/right.gif";
   }
   if ( minus === undefined ) {
      minus = "templates/xbrandmal/images/symbols/down.gif";
   }



    with(document.getElementById(id).style){
            display="block";
            document.getElementById("img_" + id).src = minus; 
    }
}


