function opnWinC(theURL,ww,hh) {
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - (ww/2 + 10); 
	iMyHeight = (window.screen.height/2) - (hh/2 + 50);
	var feature = "height="+hh+",width="+ww+",resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes";
	var win2 = window.open(theURL,"qna",feature);
	win2.focus();
}
obj_old = null;
function showList(obj)
{
	if(obj_old != null)
	{
		if(obj.id != obj_old.id)
		{
			chgOld()
		}
	}
	if (obj.style.display == "" || obj.style.display == "show")
	{
		obj.style.display = "none";
	}
	else if (obj.style.display == "none")
	{
		obj.style.display = "";
	}
	obj_old = obj;
}

function chgOld()
{
	obj_old.style.display = "none";
}

function mvSubFaq (){
	var frm = document.myform;
	frm.faq_code.value = frm.faqlist.value;
	frm.pageNo.value = 1;
	frm.action = "/cntnt/faq/index.jsp";
	frm.submit();
}

function goPage(num){
    var frm = document.myform;  			
    frm.pageNo.value = num;		
    frm.action = "/cntnt/faq/index.jsp";
    frm.submit();
}

function goToPage(_pageNo){
		var frm = document.myform;  		
		frm.pageNo.value = _pageNo;
		frm.action = "/cntnt/faq/index.jsp";
		frm.submit();
	}
