
function CheckSearch(type)
{
	if ((type == "link" && document.LinkSearch.fvLinkSearchText.value == '') ||
	    (type == "product" && document.ProductSearch.fvSearchText.value == ''))
	{
		alert("Please enter the text you wish to search for.");
		return false;
	}

	return true;
}
