function verifydate(y,m,d)
{
    alert('a');
  return new Date(y,m-1,d).getMonth() == m-1;
};