	function goFAQList(inForm, nodeId, nodeName, parentNodeId, parentNodeName, helpNodeId)
	{
		inForm.nodeId.value = nodeId;
		inForm.nodeName.value = nodeName;
		inForm.parentNodeId.value = parentNodeId;
		inForm.parentNodeName.value = parentNodeName;
    if(helpNodeId)
    		inForm.helpNodeId.value = helpNodeId;

		inForm.target="_top";
//		inForm.action = "../faq/FaqList.jsp";
		inForm.action = "./FaqList.jsp";
		inForm.submit();
	}

	function goFaqAnswer(inForm, faqId, index) 
	{
		inForm.faqId.value = faqId;
		inForm.index.value = index;
		inForm.target="_top";
//		inForm.action = "../faq/FaqAnswer.jsp";
		inForm.action = "./FaqAnswer.jsp";
		inForm.submit();
	}

	function goHelpAnswer(inForm, faqId, index, helpNodeId) 
	{
		inForm.faqId.value = faqId;
		inForm.index.value = index;
        if(helpNodeId)
    		inForm.helpNodeId.value = helpNodeId;
    				
		inForm.target="_top";
		inForm.action = "./HelpAnswer.jsp";
		inForm.submit();
	}

	function goRarAnswer(inForm, faqId, index) 
	{
		inForm.faqId.value = faqId;
		inForm.index.value = index;
		inForm.target="_top";
		inForm.action = "../faq/RarAnswer.jsp";
		inForm.submit();
	}
	
	function goTopFaqAnswer(inForm, nodeId, nodeName, parentNodeId, parentNodeName, faqId, index) 
	{
		inForm.nodeId.value = nodeId;
		inForm.nodeName.value = nodeName;
		inForm.parentNodeId.value = parentNodeId;
		inForm.parentNodeName.value = parentNodeName;		
		inForm.faqId.value = faqId;
		inForm.index.value = index;
		inForm.target="_top";
//		inForm.action = "../faq/FaqAnswer.jsp";
		inForm.action = "../faq/TopFaqAnswer.jsp";		
		inForm.submit();
	}

	function goMyFaqAnswer(inForm, nodeId, nodeName, faqId, index) 
	{
		inForm.nodeId.value = nodeId;
		inForm.nodeName.value = nodeName;
		inForm.faqId.value = faqId;
		inForm.index.value = index;
		inForm.target="_top";
		inForm.action = "../faq/FaqAnswer.jsp";
		inForm.submit();
	}

	function sendFeedback(inForm)
	{
		var isCheck = false;
		for(i=0; i <inForm.feedback.length; i++)
		{
			if( inForm.feedback[i].checked )
			{
				isCheck = true;
			}
		}
		if(!isCheck)
		{
			alert ( '\ub9cc\uc871\ub3c4\ub97c \uba3c\uc800 \uccb4\ud06c\ud574\uc8fc\uc138\uc694.' );
			return;
		}	
		//openWindow("", "popupFeedBack", '450','180', 'no');
//		inForm.target="iframe_popupFeedBack";
		inForm.action="../faq/PopupFeedBack.jsp";
		inForm.submit();
	}

	function goRarList(inForm) 
	{   	    
		if( trim(inForm.question.value) == "" )
		{
			alert('\uc9c8\ubb38\uc744 \uc785\ub825\ud574\uc8fc\uc138\uc694.');
			return;
		}			
		inForm.submit();
	}

	function checkEnterKey(inForm){
		if(event.keyCode==13){ 
			if( trim(inForm.question.value) == "" )
			{
				alert('\uc9c8\ubb38\uc744 \uc785\ub825\ud574\uc8fc\uc138\uc694.');
				return;
			}
			inForm.submit();
		}
	}
  


	function goRarListByKeyword(inForm, keyword) 
	{
		inForm.question.value = keyword;
		inForm.target="_top";
		inForm.submit();
	}

	function downloadFaqAttach(inForm, fileName, filePath)
	{
		inForm.target = "_downloadPopup_";
		inForm.fileName.value = fileName;
		inForm.filePath.value = filePath;
		inForm.action = "../download.jsp";
		inForm.submit();
	}

	function sendMyFaq(inForm)
	{
		openWindow("", "popupMyFaq", '450','180', 'no');
		inForm.target="popupMyFaq";
		inForm.action="../faq/PopupInsertMyFaq.jsp";
		inForm.submit();
	}

	function goDeleteMyFaq(inForm, command, faqId) 
	{
		inForm.command.value = command;
		inForm.faqId.value = faqId;
		inForm.target="_top";
		inForm.action = "../faq/MyFaqList.jsp";
		inForm.submit();
	}

	function hidestatus(){
		window.status="¾È³çÇÏ¼¼¿ä. ÇÏ³ª·Îµå¸² °í°´¼¾ÅÍÀÔ´Ï´Ù.";
		return true;
	}

	if(document.layers){
		document.captureEvents(Event.mouseover | Event.mouseout);
	}
	document.onmouseover = hidestatus;
	document.onmouseout = hidestatus;
	setInterval("hidestatus()", 100);

