function validDate(sDate)
{
	//if the day, month and year are all valid, return true
	if(!validDay(sDate))return false;
	if(!validMonth(getMonth(sDate)))return false;
	if(!validYear(getYear(sDate)))return false;
	return true;
}
