// JavaScript Document
function brandSelectedItem()
	{
		var BrandIndex = document.getElementById('category').selectedIndex;
		var BrandText = document.getElementById('category')[BrandIndex].text;
		var BrandValue = document.getElementById('category')[BrandIndex].value;
		
		
		if (BrandValue=='')
		{
		window.location='home.php';
		}
		if (BrandValue!='')
		{
		var url =  'show.php?qbrand=' + BrandValue;
		window.location=url;
		}
	}
	function priceSelectedItem()
	{
		var PriceIndex = document.getElementById('price').selectedIndex;
		var PriceText = document.getElementById('price')[PriceIndex].text;
		var PriceValue = document.getElementById('price')[PriceIndex].value;
		if (PriceValue=='')
		{
		window.location='home.php';
		}
		if (PriceValue!='')
		{
		var url =  'show.php?qprice=' + PriceValue;
		window.location=url;
	}}
