function calculateBirthDate() {
	var f = document.getElementById("calcBD");
	/*if(f.day.value == "" || f.day.value == "ДД") {
		alert("Пожалуйста, укажите день последней менструации");
		f.day.focus();
		return false;
	}
	if(f.month.value == "" || f.month.value == "ММ") {
		alert("Пожалуйста, укажите месяц последней менструации");
		f.month.focus();
		return false;
	}
	if(f.year.value == "" || f.year.value == "ГГГГ") {
		alert("Пожалуйста, укажите год последней менструации");
		f.year.focus();
		return false;
	}*/
	
	var infoRow = document.getElementById("infoRow");
	var req = new JsHttpRequest();
    req.onreadystatechange = function() {
        if (req.readyState == 4) {
        	//infoRow.innerHTML = req.responseText;
        	infoRow.innerHTML = req.responseJS.info;
        	document.getElementById("birth_date").value = req.responseJS.birthDate;
        	document.getElementById("cur_week").value = req.responseJS.curWeek;
        }
    }
  req.open("POST", '/calendar/cal.php', true);
  req.send( { 'fm': f } );
  return false;
}