
function saveCookie(newStr)
{
	var strSavedCookie = getCookie("Search");

	if (strSavedCookie=="")
	{
		setCookie("Search",newStr);
	}
	else
	{ 
		var arrWord = strSavedCookie.split("|");

		for (var i=0;i<arrWord.length;i++)
		{
			if (arrWord[i] == newStr) {
				return;
			}
		
		}
		if (arrWord.length >= 10)
		{
			var newCookie=strSavedCookie.slice(strSavedCookie.indexOf('|')+1,strSavedCookie.length);
			newCookie = newCookie + "|" + newStr;			
			setCookie("Search",newCookie);					
		}
		else
		{
				strSavedCookie = strSavedCookie + "|" + newStr;
				setCookie("Search",strSavedCookie);		
		}
	
	}
}

function setCookie( name, value ) { 
		if (value!="")
		{
  		var expireDate = new Date();			
  		expireDate.setDate( expireDate.getDate() + 1 );		
    	document.cookie = name + "=" + escape( value ) +";expires=" + expireDate.toGMTString() + ";";
    }
    else    deleteCookie(name); 
}

function deleteCookie( cookieName )
 {
  var expireDate = new Date();

  
  //¾îÁ¦ ³¯Â¥¸¦ ÄíÅ° ¼Ò¸ê ³¯Â¥·Î ¼³Á¤ÇÑ´Ù.
  expireDate.setDate( expireDate.getDate() - 1 );
  document.cookie = cookieName + "= " + "; expires=" + expireDate.toGMTString() + "; ";
 }


function goSearch()
{

	if (document.all.TopKeyword.value == "") 
	{
		alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä.");
		return ;
	}

	if(getCookie("History")=="1") saveCookie(document.all.TopKeyword.value);

	
	location.href="http://www.gajagolf.net/Search/Search.asp?Keyword=" + document.all.TopKeyword.value;
}
function changeSelectedResult(nKey)
{
	if (nSearchResultCount == 0) return;
	
	if(nKey==40)
	{

		if(currentSelectedResult <= nSearchResultCount && currentSelectedResult > 0) document.getElementById("Result_" + currentSelectedResult).style.backgroundColor  ="white";	
		currentSelectedResult = currentSelectedResult + 1	
		if (currentSelectedResult > nSearchResultCount || currentSelectedResult < 1) currentSelectedResult = 1;
		document.getElementById("Result_" + currentSelectedResult).style.backgroundColor  ="#ececee";
		document.all.TopKeyword.value = document.getElementById("Result_TD_" + currentSelectedResult).innerHTML;
	}
	else
	{

		if(currentSelectedResult <= nSearchResultCount && currentSelectedResult > 0) document.getElementById("Result_" + currentSelectedResult).style.backgroundColor  ="white";		
		currentSelectedResult = currentSelectedResult - 1		
		if (currentSelectedResult > nSearchResultCount || currentSelectedResult < 1) currentSelectedResult = nSearchResultCount;
		document.getElementById("Result_" + currentSelectedResult).style.backgroundColor  ="#ececee";
		document.all.TopKeyword.value = document.getElementById("Result_TD_" + currentSelectedResult).innerHTML;

	}
	

}
function checkKeyword()
{
	if(event.keyCode==13) goSearch();
	else 
	{
		if(event.keyCode==229 ) 
		{
			return
		}		

		if(event.keyCode==38 || event.keyCode==40) 
		{

			changeSelectedResult(event.keyCode); 
			return
		}

		if(getCookie("Automation")!="0")	sendKeyword();
		
	}

}
function getKeyword()
{

	try
	{
  	//if (g_oXMLHttpReq.responseXML.xml != "") alert(g_oXMLHttpReq.responseXML.xml);
		var xmlData = g_oXMLHttpReq.responseXML;	
		
	}
	catch(E)
	{
		alert("error");
		return;
	}

	var rootItem = xmlData.getElementsByTagName("ItemList");
	
	nSearchResultCount = 0;
		
	if (rootItem.length!=0){

		var newHtml = "<table width=100% border=0 bgcolor='white'>";
		newHtml = newHtml + "<tr><td clospan='2'><table width='100%' bgcolor='#ececee'><tr ><td width='130'><b>°Ë»ö¾î ÀÚµ¿¿Ï¼º</b></td><td width='70' align='right'><a href='Javascript:setOffAutomation();'>²ô±â</a> | <a href='Javascript:closeSearch();'>´Ý±â</a></td></tr></table></td></tr>";		
		
		for(var i=0;i<rootItem[0].childNodes.length;i++)
		{
			var m = rootItem[0].childNodes[i];
			var m_KeyID = m.childNodes[0].firstChild.nodeValue;
			var m_Keyword = m.childNodes[1].firstChild.nodeValue;			
			 newHtml = newHtml + "<tr id='Result_" + (i+1) + "' onmouseover=\"this.className='list_over'\" onmouseout=\"this.className='list_out'\"><td><a href='http://www.gajagolf.net/search/search.asp?Keyword=" + m_Keyword + "'><div id='Result_TD_" + (i+1) + "'>" + m_Keyword + "</div></a></td></tr>";
			
		}
		newHtml = newHtml + "</table>";
		
	
		document.all.Result.innerHTML = newHtml;
		document.all.Result.style.display="";
		
		nSearchResultCount = i;
		
	}
	else document.all.Result.innerHTML = "";			
}

function sendKeyword()
{
	
	loadXMLDoc("/xmlGetKeyword.asp?Keyword="+document.all.TopKeyword.value,getKeyword);

}
function closeHistory()
{
	document.all.TextSearch.src = "http://www.gajagolf.net/images/icon_search01.gif";
	document.all.History.style.display = "none";
}
function closeSearch()
{
	document.all.Result.style.display = "none";

}
function closeSetup()
{
	document.all.Setup.style.display = "none";

}

function setOffAutomation()
{
		setCookie("Automation","0");		
		closeSearch();
}
function SetConfiguration()
{
		if(document.all.RadioAutomation[0].checked) 
	{
		setCookie("Automation","1");
	}
	else
	{
		setCookie("Automation","0");	
	}

	if(document.all.RadioHistory[0].checked) 
	{
		setCookie("History","1");	
	}
	else
	{
		setCookie("History","0");		
		setCookie("Search",""); 

	}	
	document.all.TextSearch.src = "http://www.gajagolf.net/images/icon_search01.gif";
	closeSetup();
}

function goSetup()
{
	var strHtml = "<table width=100% border=0 bgcolor='white'>";
	
	
	strHtml = strHtml + "											<tr bgcolor='white'><td colspan='3'><table bgcolor='#ececee' width='100%'><tr ><td width='100' ><b>±â´É ¼³Á¤</b></td><td  align='right' colspan='2'><a href='Javascript:closeHistory();closeSetup();'>´Ý±â</a></td></tr></table></td></tr>";		
	

	if((getCookie("Automation")!="0"))
	{
		strHtml = strHtml + "												<tr bgcolor='white'><td width='110' style='font-size: 8pt;font: arial; '> °Ë»ö¾î ÀÚµ¿ ¼³Á¤</td><td style='font-size: 8pt;font: arial;' >";
		strHtml = strHtml + "<input type=radio name='RadioAutomation' class='input_chk' checked value=1 > ÄÑ±â <input type=radio name='RadioAutomation' class='input_chk' value=0>²ô±â</td><td width='10'></td></tr>"; 
	}
	else
	{
		strHtml = strHtml + "												<tr bgcolor='white'><td width='110' style='font-size: 8pt;font: arial; '> °Ë»ö¾î ÀÚµ¿ ¼³Á¤</td><td style='font-size: 8pt;font: arial;' >";
		strHtml = strHtml + "<input type=radio name='RadioAutomation' class='input_chk' value=1 > ÄÑ±â <input type=radio name='RadioAutomation' class='input_chk' checked value=0>²ô±â</td><td width='10'></td></tr>"; 
	}
	
	if((getCookie("History")=="1"))
	{
		strHtml = strHtml + "												<tr bgcolor='white'><td width='110' style='font-size: 8pt;font: arial;' > ³»°¡ Ã£Àº °Ë»ö¾î  </td><td style='font-size: 8pt;font: arial;'><input type=radio name='RadioHistory' checked value=1> ÄÑ±â <input type=radio name='RadioHistory' value=0>²ô±â</td><td width='10'><a href='Javascript:SetConfiguration();'><img src='http://admin.gajagolf.net/images/btn_sel_save.gif' border='0'></a></td></tr>";
	}
	else
	{
		strHtml = strHtml + "												<tr bgcolor='white'><td width='110' style='font-size: 8pt;font: arial;' > ³»°¡ Ã£Àº °Ë»ö¾î  </td><td style='font-size: 8pt;font: arial;'><input type=radio name='RadioHistory' value=1> ÄÑ±â <input type=radio name='RadioHistory' checked value=0>²ô±â</td><td width='10'><a href='Javascript:SetConfiguration();'><img src='http://admin.gajagolf.net/images/btn_sel_save.gif' border='0'></a></td></tr>";
	}
	
	strHtml = strHtml + "											</table>";	
	
	document.all.Setup.innerHTML = strHtml;		
	
	document.all.Setup.style.display="";
	document.all.History.style.display = "none";	
	document.all.Result.style.display = "none";		
}
function getHistory()
{

	var strHtml = "<table width=100% border=0 bgcolor='white'>";
			strHtml = strHtml + "<tr><td colspan='2'><table width='100%' bgcolor='#ececee'><tr><td width='120'><b>³»°¡ Ã£Àº °Ë»ö¾î</b></td><td width='70' align='left'><a href='Javascript:goSetup();'>¼³Á¤</a> | <a href='Javascript:closeHistory();'>´Ý±â</a></td></tr></table></td></tr>";
	//setCookie("Search","");
	var strSavedCookie = getCookie("Search");

	if (strSavedCookie!="")
	{ 
		var arrWord = strSavedCookie.split("|");	
		arrWord.sort();
		
		for (var i=0;i<arrWord.length;i++)
		{
			strHtml = strHtml + "<tr onmouseover=\"this.className='list_over'\" onmouseout=\"this.className='list_out'\"><td><a href='http://www.gajagolf.net/search/search.asp?Keyword='" + arrWord[i] + "'>";			
			strHtml = strHtml + arrWord[i];
			strHtml = strHtml + "</a></td></tr>";
		}
	}

	strHtml = strHtml + "</table>";
	document.all.History.innerHTML = strHtml;

	strSRC = document.all.TextSearch.src;

	if 	(strSRC.indexOf("/images/icon_search01.gif") > 0)
	{
		document.all.Result.style.display = "none";		
		document.all.History.style.display = "";		
		document.all.TextSearch.src = "http://www.gajagolf.net/images/icon_search02.gif";		
	}
	else
	{
		document.all.TextSearch.src = "http://www.gajagolf.net/images/icon_search01.gif";	
		document.all.History.style.display = "none";		
		document.all.Setup.style.display = "none";			
		document.all.Result.style.display = "none";				
	};		
}

