// JavaScript Document

function viewCategory(catId,parentId)
{
	window.location.href = 'index2.php?view=category&catId=' + catId + '&parentId=' + parentId;
}

function viewProduct(catId,parentId)
{
	window.location.href = 'index.php?view=products&catId=' + catId + '&parentId=' + parentId;
}

function Product(pdId)
{
	if(pdId==1) {
	window.location.href = 'whey_infuse.php';
	} else if(pdId==2) {
	window.location.href = 'creatine.php';
	} else if(pdId==3) {
	window.location.href = 'de-lite_whey.php';
	} else if(pdId==4) {
	window.location.href = 'meal_replacement_drink.php';
	} else if(pdId==5) {
	window.location.href = 'frozen_dessert_bar.php';
	} else if(pdId==6) {
	window.location.href = 'sleeve_shirt.php';
	} else if(pdId==7) {
	window.location.href = 't_shirts.php';
	} else if(pdId==8) {
	window.location.href = 'workout_towels.php';
	} else if(pdId==9) {
	window.location.href = 'beanies.php';
	} else {		
	window.location.href = 'index.php?view=mainproduct&pdId=' + pdId;
	}
	
}


