var ora = new sack("/stuff/orakel.php");
var is_oracling = false;
var day=new Date();

function showOra () {
	is_oracling = false;
	document.getElementById('ora-loading').style.display = 'none';
}
function clickOra () {
	if (!is_oracling) {
		is_oracling = true;
		processOra();
	}
}
function processOra () {
	document.getElementById('ora-loading').style.display = '';
	ora.reset();
	ora_form = document.getElementById('oracle_form');
	//ora.setVar("male", ora_form.sex[0].checked?1:0);
	ora.setVar("frage", ora_form.frage.value);
	ora.method = 'GET';
	ora.element = 'ora-result';
	ora.onCompletion = showOra;
	ora.runAJAX();
}

