function alertBeforeToday(s) { alert(s+"???en_US.all.error.beforeToday???"); } function alertAfterToday(s) { alert(s+"???en_US.all.error.afterToday???"); } function alertBeforeDate(s, d) { alert(s+"???en_US.all.error.beforeDate???"+d); } function alertInteger(s) { alert(s+"必须是整数"); } function alertFloat(s) { alert(s+"必须是浮点数"); } function alertRequired(s) { alert(s+"必须填"); } function alertDate(s) { alert(s+"不是有效的日期,日期格式是yyyy/mm/dd"); } function getFullDate(date) { return date.substring(0,4)+"?"+date.substring(4,2)+"?"+date.substring(6)+"?" }