function jumpToManufacturer()
{
    var mfgUrl = document.getElementById('selectManufacturer').options[document.getElementById('selectManufacturer').selectedIndex].value;
	if (mfgUrl != "") location=mfgUrl;
}

function focusTopSearch()
{
	var searchBox = document.getElementById('topSearch');
	if (searchBox.value == "Enter keywords")
	{
		searchBox.value = "";
	}
	searchBox.style.fontStyle = "normal";
}

function blurTopSearch()
{
	var searchBox = document.getElementById('topSearch');
	if (searchBox.value == "")
	{
		searchBox.value = "Enter keywords";
	}
	searchBox.style.fontStyle = "italic";
}

function pageLoad()
{
	if (document.getElementById('topSearch') != null)
		blurTopSearch();
}