function DistintoDeBlanco(s){
	var i;
	d=false
	for (i=0;i<s.length;i++)
		if (s.charAt(i)!=" "){
			d=true
			break
			}
	return d
	}
