/*
got this off a script site.  sorry. lost the source
*/




//Function to validate e-mail address:		


function checkform (form)
{
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website

  // ** START **
  if (form.email.value == "") {
    alert( "Please enter your email address." );
    form.email.focus();
    return false ;
  }

//There must be a "kativik.qc.ca" somewhere in the e-mail address.		
		  if(form.email.value.indexOf("kativik.qc.ca",0)==-1)
			{
			window.alert("Your e-mail must contain kativik.qc.ca. \n\nYou can only receive registration information using the Kativik School Board email system.")
			return false;

			}

  // ** END **
  return true ;
}







