/*
	Copyright 2001-2003 B2S di Stenio Brunetta.
	Vietata la riproduzione, l'uso o la modifica senza autorizzazione.
	Per informazioni: info@b2s.it
*/
function chk_date(obj_g, obj_m, obj_a, msg){
    g = obj_g.options[obj_g.selectedIndex].value;
    m = obj_m.options[obj_m.selectedIndex].value;
    a = obj_a.options[obj_a.selectedIndex].value;
	var giorni = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31)[m-1];
	if ((m == 2) && (a % 4 == 0 && a % 100 != 0 || a % 400 == 0)) giorni++;
	if (g > giorni){
		alert(msg);
		obj_g.focus();
        return false;
    }
    else return true;
}
/* Fine Copyright */
