function validarEmail(campo){
	if(campo.value=="")return true
	c1=campo.value.split("@")
	if(c1.length==2&&c1[0].length>0){
		c2=c1[1].split(".")
		if(c2.length>1&&c2[0].length>0&&c2[1].length>0){
			return true
		}
	}
	return false
}