var horos = new sack("/stuff/horoskop.php");
var is_horoscoping = false;
var day=new Date();

function showHoro () {
	is_horoscoping = false;
	document.getElementById('horo-loading').style.display = 'none';
}
function clickHoro () {
	if (!is_horoscoping) {
		is_horoscoping = true;
		processHoro();
	}
}
function processHoro () {
	document.getElementById('horo-loading').style.display = '';
	horos.reset();
	horo_form = document.getElementById('horoscope_form');
	horos.setVar("bday", horo_form.bday.value);
	horos.setVar("bmonth", horo_form.bmonth.value);
	horos.setVar("male", horo_form.sex[0].checked?1:0);
	horos.setVar("cday", day.getDate());
	horos.setVar("cmonth", day.getMonth()+1);
	horos.setVar("cyear", day.getFullYear());
	horos.setVar("lang", horo_form.horolang.value);
	horos.method = 'GET';
	horos.element = 'horoscope-result';
	horos.onCompletion = showHoro;
	horos.runAJAX();
}

