
		/************************************************************************************************************
        *     filename      	:  usedCarSearch.js								                                                      						*
        *     Description 	: This javascript page has been developed to select a particular car from select option	*
        *     Author        	: Biswajit Roy, Developer, Soft_Solutions4u, Chennai, India                                				*
        *     Date        		: 22.06.2009                                                                              										*
        *     LastModified	: 22.06.2009                                                                              										*
		************************************************************************************************************/


function sort()
{

	price=document.getElementById("priceSearch").value;
	car=document.getElementById("makeSearch").value;
	//alert("Price : "+price+"Car : "+car);
	
	if(price!="" && car!=""){
		location.href="louisville-lexington-used-cars.php?pricesort="+price+"&makesort="+car;
	}
	else if(price!=""){
		location.href="louisville-lexington-used-cars.php?pricesort="+price;
	}
	else if(car!=""){
		location.href="louisville-lexington-used-cars.php?makesort="+car;
	}
	else{
		location.href="louisville-lexington-used-cars.php";
	} 
}