function showfaq(div){
  if(div.style.height == '' || div.style.height == '15px'){
    div.style.height = 'auto';
  }
  else{
    div.style.height = 15+'px';
  }
}
