function keywordSearch()
{
	var strText = $("#quickSearch").val();
	
	if (strText != "")
	{
		document.location.href = "/products/search/" + encodeURIComponent(strText);
	}
	else
	{
		alert("Please enter a search keyword first");
	}
	return false;
}

function validateNotifyForm()
{
	if (validateForm('notifyForm'))
	{
		$("#notifyForm").submit();
	}
	
	return false;
}
