 var todo="hide";
 function click_handler(){
   var ww=event.srcElement;
    
   if(ww.tagName=="A") {return;}
   if(ww.tagName=="DIV") {
        var src_index=ww.sourceIndex;
		var all_length=document.all.length;
						
		if(document.all[src_index+7].tagName!="DIV") {return;}
	    if(document.all[src_index+7].style.display=="block"){
		    todo="hide"
			if(ww.last=="true"){
		        ww.style.borderBottom="#F89103 2px solid";
		    }
		}
		else{ 
		   todo="show"
		   if(ww.last=="true"){
		       ww.style.borderBottom="#F89103 0px solid";
		   }
		}
							   
	    for(var tt=src_index+4;tt<all_length;tt++){
		   if(document.all[tt].tagName=="SPAN"  && document.all[tt].className!="new_theme"  ) {return;}
		   if(todo=="show"){
		      if(document.all[tt].tagName=="DIV") {
		          document.all[tt].style.display="block";
		      }
		   }
		   else{
		      if(document.all[tt].tagName=="DIV") {
		          document.all[tt].style.display="none";
		      }
			}  
		}
	}
}

function up_click(){
    event.srcElement.parentElement.click();
}
function over(xx){return;}
function out(xx){return;}