var seq = "";
function faq(answer,faqNo){
	faqObj = document.getElementById('con_' + answer);
	if(seq != faqObj){
		if(seq !=""){
			seq.style.display = "none";
		}
		faqObj.style.display = "block";
		seq = faqObj;
		
		if(faqNo != ''){
			goCount(faqNo, 'viewCount');
		}
	}
	else{
		faqObj.style.display = "none";
		seq = "";
	}
}
function goQnAForm(){
    window.open("http://ars.samsung.com/customer/form/formmail/direct.jsp?SITE_ID=110&PROD_ID=79", "", "width=590,height=700,scrollbars=yes");
}
function goContactus(){
	var form = document.getElementById("frm_act");
	form.action = "/footer/contact-us.do";		
	form.submit();	
}
function goSearch(){
	var form = document.getElementById("frm_act");
	form.action = "/support/faq.do";		
	form.submit();	
}
function goSetting(type){
	if(type == 'category'){
		//document.getElementById("phoneModel").selectedIndex = 0;
		document.getElementById("searchText").value = "";
	}else if(type == 'text'){
		document.getElementById("categoryCd").selectedIndex = 0;
		//document.getElementById("phoneModel").selectedIndex = 0;
	}
	goSearch();
}