// JavaScript Document
// JavaScript Document

var loop;
var ajax = new Ajax();
var ajax2 = new Ajax();

function get_Brands(selectedID) {
	
	if (selectedID != "0") {
		document.getElementById("spanBrand").innerHTML = "please wait...";
		var url="ajax/getBrands.asp";
		url=url+"?selectedID="+selectedID;
		url=url+"&random="+Math.random();
		ajax.doGet(url, printBrands);
	}
	else {
		document.getElementById("spanBrand").innerHTML = "";
	}
}

function printBrands(str) {
	document.getElementById("spanBrand").innerHTML = str;
	//document.getElementById("spanBrand").innerHTML = "<select name=\"Products\" id=\"Products\"><option value=\"-1\">All</option></select>";
}

function get_Types(selectedID) {
	
	if (selectedID != "0") {
		document.getElementById("spanProdCat").innerHTML = "please wait..."+selectedID;
		var url="ajax/getTypes.asp";
		url=url+"?selectedID="+selectedID;
		url=url+"&random="+Math.random();
		ajax.doGet(url, printTypes);
	}
	else {
		document.getElementById("spanProdCat").innerHTML = "";
	}
}

function printTypes(str) {
	document.getElementById("spanProdCat").innerHTML = str;
}
