// JavaScript Document
//====================================================================================================
//	File Name		:	category.js
//----------------------------------------------------------------------------------------------------
//	Purpose			:	Client side validation in JavaScript.
//	Creation Date	:	
//====================================================================================================

function View_Gallary_Click(Category_Id)
{
	with(document.frmCategory)
	{
		Action.value = "View_Gallary";
		category_id.value = Category_Id;		
		submit();
	}
}

function View_Product_Click(Category_Id)
{
	popupWindowURL("category.php?Action=View&cid="+Category_Id, 'PageContent', 550, 550, false, false, true);
}
