
function getProducts(arrowValue)
{
	var Category = $("#ddlCategory").val();
	var newColor="";
	var newColorChecked="";
	var elms=document.getElementsByName("rbnColor");	
	
	var txtlowerValue = $("#txtlowerValue").val();
	var txtupperValue = $("#txtupperValue").val();
	//alert(arrowValue);
	//alert(arrowValue+" "+txtlowerValue+" "+txtupperValue);
	if(arrowValue==5)
	{
		txtlowerValue = parseInt(txtlowerValue)+1;
		txtupperValue = parseInt(txtupperValue)+1;
	}else if(arrowValue==0)
	{
		txtlowerValue = parseInt(txtlowerValue)-1;
		txtupperValue = parseInt(txtupperValue)-1;
	}else if(arrowValue!=""){
		txtlowerValue=0;
		txtupperValue=5;
		//alert(txtlowerValue);
	}
	if(txtlowerValue=="undefined"){
		txtlowerValue=0;
	}
	if(txtupperValue=="undefined")
	{
		txtupperValue=5;
	}
	//alert(txtlowerValue);
	//alert(elms.length);
	for (var i = 0; i < elms.length; i++) 
	{         
		if (elms[i].checked==true) 
		{
			newColorChecked = elms[i].checked;
			newColor=elms[i].value;			
		}				
	}
	//alert(newColor);
	if(newColorChecked!=false && Category!=""){
		//alert(arrowValue+" "+txtlowerValue+" "+txtupperValue);
		$.post("getResults.php", {category: Category, Color: newColor, lowerValue: txtlowerValue, upperValue: txtupperValue},
			function(data){
			//alert("Data Loaded: " + data);
			if(data==0)
			{
				$('#product_content_div').html("<div align='center' style='margin-top:250px;font-size:15px;color:#006699;'>For more information, contact <strong>cpsuresh@agi-glaspac.com.</strong></div>");
				$('#product_content_div').show(100);
				$('#SearchResults').hide(100);
				//$('#ProductDetailsResults').hide(100);
				$('#ProductResultDiv').hide(100);
			}else{
				$('#SearchResults').html(data);
				$('#SearchResults').show(100);
				$('#product_content_div').hide(100);
				//$('#ProductDetailsResults').hide(100);
				$('#ProductResultDiv').show(100);
				//$('#ProductDetailsResultsOld').hide(100);
			}
		});
	}else if(Category!=""){
		//alert($('#ProductDetailsResultsOld').val())	
		$.post("getResults.php", {category: Category, lowerValue: txtlowerValue, upperValue: txtupperValue},
			function(data){
			//alert("Data Loaded: " + data);
			if(data==0)
			{
				$('#product_content_div').html("<div align='center' style='margin-top:250px;font-size:15px;color:#006699;'><b>For more information, contact cpsuresh@agi-glaspac.com.</b></div>");
				$('#product_content_div').show(100);
				$('#SearchResults').hide(100);
				//$('#ProductDetailsResults').hide(100);
				$('#ProductResultDiv').hide(100);
			}else{
				$('#SearchResults').html(data);
				$('#SearchResults').show(100);
				$('#product_content_div').hide(100);
				//$('#ProductDetailsResults').hide(100);
				$('#ProductResultDiv').show(100);
				//$('#ProductDetailsResultsOld').hide(100);
				//$('#ProductDetailsResultsOld').hide(100);
			}
		});
	}else if(newColor!="" && Category==""){
		//alert("Please select Category.");
		$('#product_content_div').html("<div align='center' style='margin-top:250px;font-size:15px;color:#006699;'><b>Please choose one of the categories</b></div>");
		$('#product_content_div').show(100);
		$('#SearchResults').hide(100);
		$('#ProductResultDiv').hide(100);
	}else{
		$('#SearchResults').hide(100);
		$('#product_content_div').show(100);
		$('#ProductDetailsResults').show(100);
		$('#ProductResultDiv').hide(100);
		/*alert(newColorChecked);
		if(newColorChecked==true)
		{
			newColorChecked=false;
		}
		alert(newColorChecked);*/
	}
	return false;
}

function getProductDetalis(productId)
{
	//alert("manohar");
	//alert(productId);
	$.post("getResults.php", {ProductId: productId},
		function(data){
		//alert("Data Loaded: " + data);
		$('#ProductDetailsResults').html(data);
		$('#ProductDetailsResults').show(100);
		$('#ProductDetailsResultsOld').hide(100);
		$('#ProductDetailsResultsOld1').hide(100);
	});
	return false;
}

