function isnew(animonth,aniday,aniyear){
nowdate = new Date();
nowyear = nowdate.getYear();
nowmonth= nowdate.getMonth();
if(nowyear < 2000) {
nowyear=nowyear+1900;
nowdate.setYear(nowyear);
}
// nowmonth= nowmonth+1;
nowdate.setMonth(nowmonth);
anidate = new Date();
anidate.setYear(aniyear);
anidate.setMonth(animonth);
anidate.setDate(aniday);
if(nowdate.getTime() <= anidate.getTime()){
document.write ('
');
}
// if(anidate.getYear() < nowdate.getYear()){
//
// if(anidate.getMonth() == nowdate.getMonth())
// {
// document.write ('
');
// }
// }
}