function addOption(selectId, val, txt) {
	var objOption = new Option(unescape(txt), val);
    window.document.getElementById(selectId).options.add(objOption);
	hideThrobbers();
}

function addResult(containerId,val) {
	window.document.getElementById(containerId).innerHTML += '<div class="dealer_row">'+val+'</div>';
	hideThrobbers();
	Shadowbox.init({skipSetup: true,players: ["iframe","html"]});
}

function showThrobber(i) {
	if(i==1) {
		window.document.getElementById('select_box_country').style.width = '114px';
	}
	if(i==2) {
		window.document.getElementById('select_box_regio').style.width = '114px';
	}
	window.document.getElementById('throbber'+i).style.display = 'block';
}

function hideThrobbers() {
	window.document.getElementById('select_box_country').style.width = '140px';
	window.document.getElementById('select_box_regio').style.width = '140px';
	window.document.getElementById('throbber1').style.display = 'none';
	window.document.getElementById('throbber2').style.display = 'none';
}

function initAjax(initAll) {
	if(initAll) window.document.getElementById('select_box_regio').innerHTML = '';
	window.document.getElementById('search_results').innerHTML = '';
}
