// --------------------------------------------------------------
// SpeedSuggestUtils.js - Javacript Utils functions
//
// March 2010, Samuel Pasquier
//
// Copyright (c) 2010 by Samuel Pasquier and Julien Lemoine
// All rights reserved.
// --------------------------------------------------------------

//
// Check Email format. Nothing really fancy for now...
//
function CheckEmail(str)
{
   return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}


