function ComprobarCesta(cesta) {

	var er_nombre = /^([a-z]|[A-Z]|\xe1|\xe9|\xed|\xf3|\xfa|\xc1|\xc9|\xcd|\xd3|\xda|\xd1|\xf1|\xfc|\s|\.|-)+$/
	var er_enteros = /^([0-9\s\+\-])+$/
	var er_decimales = /^([0-9\s\+\-\.\,])+$/
	var er_email = /^(.+\@.+\..+)$/
	var x
	var oblig = 0
	var texto = ''
	
	if (cesta.unidad.value=='MET'){
	if( !er_decimales.test(cesta.cantidad.value) ) {
		alert('Contenido del campo CANTIDAD no v\xe1lido.'+cesta.unidad.value)
		return false
	}
	if(cesta.cantidad.value<0.25) {
		alert('La cantidad debe ser como minimo de 0,25 cm.')
		return false
	}

	}
	else
	{
	if( !er_enteros.test(cesta.cantidad.value) ) {
		alert('Contenido del campo CANTIDAD no v\xe1lido.')
		return false
	}
	}
		
		if(cesta.cantidad.value<=0) {
			alert('La cantidad debe ser mayor de 0.')
			return false
		}

	return true
	
}
