function isValidEmail(str) 
	{
	 return (str.indexOf(".") > 0) && (str.indexOf("@") > 0);
	}
