function dlSort(){
	id = document.getElementById('sorteerID').value;
	if(id!='') {
		ajax.setVar("id", id);
		ajax.requestFile = document.getElementById('jsUrl').value + "/ajax_switch_dealersortering.php";
		ajax.onCompletion = switchDLReady;
		ajax.runAJAX();
	}
}

function switchDLReady() {
	if (ajax.responseStatus){
		eval(ajax.response);
		parent.location.href = (document.getElementById('urlNu').value);
	}
}

