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://erms.samsungelectronics.com/customer/form/formmail/common/common_new_2.jsp?SITE_ID=112&PROD_ID=79", "", "width=590,height=640,scrollbars=yes");
}

function goContactus(){
	var form = document.getElementById("frm_act");
	form.action = urlRoot + "/footer/contact-us.do";		
	form.submit();	
}

function goSearch(){
	var form = document.getElementById("frm_act");
	form.action = urlRoot + "/supports/faq.do";		
	form.submit();	
}

function goSetting(type){
	
	if(type == 'category'){
		//document.getElementById("phoneModel").selectedIndex = 0;
		document.getElementById("searchText").value = "";
	}else if(type == 'phone'){
		document.getElementById("categoryCd").selectedIndex = 0;
		document.getElementById("searchText").value = "";
	}else if(type == 'text'){
		document.getElementById("categoryCd").selectedIndex = 0;
		//document.getElementById("phoneModel").selectedIndex = 0;
	}
	goSearch();
}

function goCount(faqNo, type){
	if(type == 'countY' || type == 'countN'){
		alert("Σας ευχαριστώ για τη βοήθειά μας. τη βελτίωση της ιστοσελίδας FAQ.");
	}
	FaqMainDwrAction.updateGSupportFaq(faqNo,type);
}