/*
	Clements Company Website
	CME Website Specific JS Functions
	
	Jon Bergan <jbergan@berganblue.com.au>
	Bergan Blue, 2008
*/

function checkDistributorsForm()
{
	var alertmsg = "You must complete all of the required fields before you can submit this form!\n\nPlease complete the following fields:\n\n";
	var err = 0;

	if (document.getElementById('distType').value == "-1")	{
		err = 1;
		alertmsg = alertmsg+"- Product Type\n";
	}

	if (document.getElementById('distLocation').value == "-1")	{
		err = 1;
		alertmsg = alertmsg+"- Distributor Location\n";
	}

	if (err == 1)
	{
		alert(alertmsg);
		return false;
	} else {
		return true;
	}
}

function toggleSideBar(id)
{
	e = document.getElementById('sideBarBox'+id);
	f = document.getElementById('sidebarItem'+id);

	for (i=1; i<totalCats; i++)
	{
		if (i != id)
		{
			if (document.getElementById('sideBarBox'+i))
			{
				a = document.getElementById('sideBarBox'+i);
				b = document.getElementById('sidebarItem'+i);

				b.style.backgroundColor = "#cfe0e9";
				b.style.backgroundImage = "url(images/sidebar-arrow-down.gif)";
				a.style.display = "none";
				a.style.visibility = "hidden";
			}
		}
	}

	if (e.style.display == "none" || !e.style.display)
	{
		f.style.backgroundColor = "#e0ecf2";
		f.style.backgroundImage = "url(images/sidebar-arrow-up.gif)";
		e.style.display = "block";
		e.style.visibility = "visible";
	} else {
		f.style.backgroundColor = "#cfe0e9";
		f.style.backgroundImage = "url(images/sidebar-arrow-down.gif)";
		e.style.display = "none";
		e.style.visibility = "hidden";
	}
}

function focusSearch() {
	var e = document.getElementById('topSearch');
	
	e.style.backgroundColor = "#fefee1";
	e.style.color = "#000000";

	if (e.value == "Search")
		e.value = "";
}

function blurSearch() {
	var e = document.getElementById('topSearch');
	
	e.style.backgroundColor = "#ffffff";
	e.style.color = "#aaaaaa";

	if (e.value == "")
		e.value = "Search";
}

