//*************************************************************
//  UTIL >> Toggle Div
//*************************************************************
function UTIL_Toggle(Div) 
{ 
	if (document.getElementById(Div).style.display == "none")
		document.getElementById(Div).style.display = "block";
	else
		document.getElementById(Div).style.display = "none";
}

//*************************************************************
//  SEARCH >> Clear
//*************************************************************
function SEARCH_Clear(Type)
{
	var Search_Box = document.getElementById("Header-Search-Term");
	if (Type == "Single")
	{
		if (Search_Box.value == '' || Search_Box.value == "Type here...")
		{
			Search_Box.value = '';
			Search_Box.style.color = "#222";
		}
	}
	else if (Type == "Double")
	{
		if (Search_Box.value != '')
		{
			Search_Box.value = '';
			Search_Box.style.color = "#222";
		}
	}
	else if (Type == "Blur")
	{
		if (Search_Box.value == '')
		{
			Search_Box.value = "Type here...";
			Search_Box.style.color = "#777";
		}
	}
}