/**
 * 
 */

function getHP(hp){
	
	if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp = new XMLHttpRequest();
	} else {// code for IE6, IE5
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function() {
		if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			document.getElementById("kw").value = xmlhttp.responseText;
		}
	}
	xmlhttp.open("get", "http://www.sayarti.ps/list-hp.html?hp=" + hp, true);
	xmlhttp.send();
	
	
}





function makeYear(year) {

	document.getElementById('ityear').innerHTML = year;

}

function showMake(str) {

	if (str == "select") {
		document.getElementById("sort_make").innerHTML = "";
		document.getElementById("sort_brand").innerHTML = "";
		return;
	}
	if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp = new XMLHttpRequest();
	} else {// code for IE6, IE5
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function() {
		if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			document.getElementById("sort_make").innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("get", "http://www.sayarti.ps/list-make.html?q=" + str, true);
	xmlhttp.send();
}

function showBrand(make, yearvalue) {
	if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp = new XMLHttpRequest();
	} else {// code for IE6, IE5
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange = function() {
		if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			document.getElementById("sort_brand").innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("get", "http://www.sayarti.ps/list-brand.html?b="+make+ "&y=" + yearvalue, true);
	xmlhttp.send();
}
