function Check_EMail(StrEmail){

	Pos1 = StrEmail.indexOf("@",0)
	if (Pos1 > 0){
		Pos2 = StrEmail.lastIndexOf("@")
		if (Pos1 == Pos2){
			return true
		}
	}
	return false
}	
