function getCommands(el) {
	el.theSubmit.disabled = true;
	var text = 'commands=' + el.commands.value + '&token=' + Math.random();
	$.ajax({ type: "POST", url: "includes/logo.php", data: text, success: showResult});
	document.getElementById("target").innerHTML = '<img src="images/loading.gif" />';
	return false;
}

function showResult(image) {
	document.getElementById("target").innerHTML = image;
	document.forms[0].theSubmit.disabled = false;
	document.forms[0].theSubmit.blur();
}
