//******************************************************************************/
//*                                                                            */
//*         Internet Computer Software - Java Script library.                  */
//*                                                                            */
//*         Program:                     CheckEmailDate.JS.                    */
//*         Programmer :                 John  S.  Parry.                      */
//*         Date :                       June 2010.                            */
//*         Language :                   JavaScript.                           */
//*                                                                            */
//*         Copyright (C) 2010,   Internet Computer Software Pty Ltd.          */
//*                               PO Box 279                                   */
//*                               Sandy Bay  7006                              */
//*                               Tasmania  Australia                          */
//*                                                                            */
//******************************************************************************/
//*                                                                            */
//*                                                                            */
//******************************************************************************/

  function CheckEmailDateOnSubmit ( SubmitForm )
    {
      if ( CheckAllEmails ( SubmitForm ))
        { if ( CheckAllDates ( SubmitForm ))
            { SubmitForm.submit ( ) ; }
        }
      event.preventDefault ( ) ;
      event.stopPropagation ( ) ;
    }
