// Ajax.js
// 10-09-06, CL
//
// Execute the request
function makeRequest(zip, country) {

		if (zip != "" && country != "") {
		
			var loc = location.href;

		    var url = loc + "Ajax?zip=" + zip + "&country=" + country;
		    request.open("GET", url, true);

		    request.onreadystatechange = updatePage;
		    request.send(null);
		}
		
}