var Pre_List = '';
var Pre_Cell = '';
  
function ListClick( Now_List ,Now_Cell) {
  if( Pre_List != Now_List ) {
    if( Pre_List !='' ) {
      Pre_List.style.display = 'none';
    }
    Now_List.style.display = 'block';
    Pre_List = Now_List;
    Pre_Cell = Now_Cell;

  } else {
    Now_List.style.display = 'none';
	Pre_List = '';
	Pre_Cell = '';
  }

}

/*FAQ*/
var preContent;

function view_content(obj)
{
	var div = obj.parentNode;

	if ( document.all ) obj = div.childNodes[ 1 ]; else obj = div.childNodes[ 3 ]; // 모질라 경우 줄내림도 #text 임

	if (preContent && obj!=preContent){
		obj.style.display = "block";
		preContent.style.display = "none";
	}
	else if (preContent && obj==preContent) preContent.style.display = ( preContent.style.display == "none" ? "block" : "none" );
	else if (preContent == null ) obj.style.display = "block";

	preContent = obj;
}

{ // 초기출력
	var no = "faq_";
	if ( document.getElementById( no ) ) view_content( document.getElementById( no ) );
}

