// (C) Copyright 2005-2008 StudentCenter
// (C) Copyright 2005-2008 Marian Balakowicz, m8@izotz.org

function date_is_correct(cday, cmon, cyear)
{
	tempdate = new Date(cyear, cmon - 1, cday);
	//document.write(tempdate.toString() + "<br>");

	if((cday == tempdate.getDate()) && 
			(cmon == (tempdate.getMonth() + 1)) &&
			(cyear == tempdate.getFullYear()))
		return true;

	return false;
}
