function change_bottomline(obj,mode){

	if(mode == 1){
		//obj.style.textDecoration = 'underline';
		obj.style.borderBottom = "dotted 1px #0097A7"; 
	}else{
		obj.style.borderBottom = 'none';
	}
}
