// JavaScript Document
function gsShowHideLangSelect(currLang)
{
	if(document.getElementById('gsLangOpts').style.display)
	{
		var selectDisplayed = document.getElementById('gsLangOpts');
		
		if(selectDisplayed.style.display == 'none')
		{
			selectDisplayed.style.display = 'block';
			var currLangId = 'gsLang_' + currLang;
			var currLangAnchor = document.getElementById(currLangId); 
			currLangAnchor.style.display = 'none';
		}
		else
		{
			selectDisplayed.style.display = 'none';
		}
	}

}

function gsLangOptHighlight(inID)
{
	var overOpt = document.getElementById(inID);
	overOpt.style.backgroundImage = 'url(/img/gsbtnsrch.gif)';
	overOpt.style.backgroundRepeat = 'repeat-x';
	overOpt.style.backgroundColor = '#7B8E9D';
	overOpt.style.color = '#FFFFFF';
	overOpt.style.textDecoration = 'none';
}

function gsLangOptUnHighlight(inID)
{
	var overOpt = document.getElementById(inID);
	overOpt.style.backgroundImage = 'none';
	overOpt.style.backgroundRepeat = 'no-repeat';
	overOpt.style.backgroundColor = '';
	overOpt.style.color = '#000000';
	overOpt.style.textDecoration = 'none';
}
