
	function chkProducts()
	{
		if (document.frmProducts.selProducts.value==1)
		{
			window.location.href="General/CannedProducts.php";
		}
		if (document.frmProducts.selProducts.value==2)
		{
			window.location.href="General/BottledProducts.php";
		}
		if (document.frmProducts.selProducts.value==3)
		{
			window.location.href="General/AgroChemicals.php";
		}
		if (document.frmProducts.selProducts.value==4)
		{
			window.location.href="General/EdibleRefinedOils.php";
		}
		if (document.frmProducts.selProducts.value==5)
		{
			window.location.href="General/AnimalFeeds.php";
		}
		if (document.frmProducts.selProducts.value==6)
		{
			window.location.href="General/Rice.php";
		}
	}


