function getsubCat(divName)
{
	var categoryId;
	categoryId = document.getElementById('categoryof').value;
	xajax_getSubCategory(categoryId,divName);
}

	function getsubCategory()
	{
		document.addProFrm.method = "post";
		document.addProFrm.submit();
	}
	
	function produtImageLg(img)
	{
		//alert("in java script");
		document.getElementById('prdImage').src = 'http://www.asbasports.com.au/productImages/'+img;
			
	}
	
	function ajax_addtoCart(productId,colorU)
	{
		
		var price = document.getElementById('prdPrice').value;
		var size = document.getElementById('sizeof').value;
		var quantity = document.getElementById('quantity').value;
		//alert(quantity);
		if(colorU == 'color'){
			var color = document.getElementById('colorOf').value;
		} else {
			color ='';
		}
			//alert("in js"+color);
		if( size =='' || quantity == '' || productId == ''){
			if(size ==''){
				alert("Please select Size");
			}
			if(quantity ==''){
				alert("Please enter Quantity");
			}
		}else{
			if(quantity > 0){
				document.getElementById('process').style.display='block';
				xajax_addToCart(price,size,quantity,productId,color);
			}
		}
	}

	function ajax_remove(cartId)
	{
		if(cartId > 0)
		{
			document.getElementById('process').style.display='block';
			xajax_removeItems(cartId);
		}
	}
	
	function ajax_updatecart(cartId)
	{
		document.getElementById('process').style.display='block';
		var quantity = document.getElementById('quantity_'+cartId).value;
		var price = document.getElementById('priceProd_'+cartId).innerHTML;
		//alert(price);
		if(cartId !='' && quantity != ''){
			if(quantity > 0)
			{
				xajax_updateItems(cartId,quantity,price);
			}
		}
	}
	
	function gotoCheckOut(shpExp,shpReg)
	{
		//if(shpExp != '' || shpReg != ''){
			shpExp = document.getElementById('countryExp').value;
			shpReg = document.getElementById('countryDp').value;
			
			if(shpExp != ' No Thanks' || shpReg != ''){
				window.location='http://www.asbasports.com.au/check-out'
			}
		//}
// 			countryExp
	}

	function gotoshoppingCart()
	{
		window.location='http://www.asbasports.com.au/shopping-cart';
	}
	function closeShpoDiv()
	{
		document.getElementById('cartviewDiv').style.display='none';
	}

	function shopMorecart(linkto){
		//window.location='products.php?subCatId='+linkto
		window.location='http://www.asbasports.com.au/products';
	}
	function tosamPage(div){
	}
	function gotoSearch()
	{
		var searctText = document.getElementById('search').value;
		window.location='search.php?action=search&searchtext='+searctText;
	}
	
	function openDiv(DivId)
	{
		//alert(DivId);
		 document.getElementById(DivId).style.display='block';
	}

	function openDivRev(DivId,DivId2,DivId3)
	{
		//alert(DivId);
		 document.getElementById(DivId).style.display='block';
		document.getElementById(DivId2).style.display='none';
		document.getElementById(DivId3).style.display='none';
	}

	function closeDiv(DivId)
	{
		//alert(DivId);
		 document.getElementById(DivId).style.display='none';
	}
	
	function downloadPdf(url)
	{
		window.open(url, "Sales");
	}
	
	function showReview(element)
	{
		if(element == 'dieLegende'){
			document.getElementById(element).style.display='block';
			document.getElementById('flexiGripReview').style.display='none';
			document.getElementById('catReview').style.display='none';
		}else if(element == 'flexiGripReview'){
			document.getElementById(element).style.display='block';
			document.getElementById('dieLegende').style.display='none';
			document.getElementById('catReview').style.display='none';
		}else if(element == 'catReview'){
			document.getElementById(element).style.display='block';
			document.getElementById('dieLegende').style.display='none';
			document.getElementById('flexiGripReview').style.display='none';
		}
		
	}
	
	function hideReview(element){
		if(element == 'dieLegende'){
			document.getElementById(element).style.display='none';
		}else if(element == 'flexiGripReview'){
			document.getElementById(element).style.display='none';
		}else if(element == 'catReview'){
			document.getElementById(element).style.display='none';
		}
	}
