﻿// JScript File

var lastId;
function showWatchDiv(id)
{
	if (lastId != null && lastId != id)
	{
		document.getElementById(lastId).style.display = 'none';
	}
	if(document.getElementById(id))
	{
		document.getElementById(id).style.display = '';
		lastId = id;
	}
}

function showDiv(id)
{
	if(document.getElementById(id))
	{
		document.getElementById(id).style.display = '';
	}
}

function hideDiv(id)
{
	if(document.getElementById(id))
	{
		document.getElementById(id).style.display = 'none';
	}
}

function showNavDiv(id)
{
	if(document.getElementById(id))
	{
		document.getElementById(id).style.display = '';
	}
}

function showPopup(id)
{
	if(document.getElementById(id))
	{
		document.getElementById(id).style.visibility = 'visible';
	}
}

function hidePopup(id)
{
	if(document.getElementById(id))
	{
		document.getElementById(id).style.visibility = 'hidden';
	}
}

/* language dropdown */

var drpLd = null;

function showLanguageDropdown()
{
	window.clearTimeout(drpLd);
	//document.getElementById('lngLnk').className = 'meta1';
	document.getElementById('drpLang').style.visibility = 'visible';
	document.getElementById('drpLang').style.zIndex = '20';
	document.getElementById('drpLang').focus();
}

function prepareHideLanguageDropdown()
{
	drpLd = window.setTimeout('hideLanguageDropdown()', 2000);
}

function hideLanguageDropdown()
{
	//document.getElementById('lngLnk').className = 'meta0';
	document.getElementById('drpLang').style.visibility = 'hidden';
}

function changeBgColor(id, color)
{
	document.getElementById(id).style.backgroundColor = color;
}