function Val_Email(x){
	if ((x.value.indexOf(".")==-1)||(x.value.indexOf("@")==-1)){
		return false
	}
	return true
}