Arianna Bukata suffers from cerebral palsy, spastic quadriplegia and delayed motor and mental development. Rehabilitation at the Moscow Institute of Medical Technology costs 230,000 rubles.
To donate to Arianna Bukate’s medical expenses, send a text message to 7878, with the word “ШАГ” in the text message and the amount of money you would like to give.
– When Arianna was born, there was nothing to suggest anything was wrong. She was sent home after five days as a healthy child, but after two weeks she started to have fits. The doctors diagnosed her with an organic head injury, – shares Arianna’s mother, Karina Bukate. – We were in intensive care for one and a half months. Since then, we go to the doctors regularly and do everything they say. I don’t work. I’m busy with her, while Arianna’s father has stopped paying child support.
VTB United League general director, Ilona Korstin:
– We want to use the publicity generated by the All-Star Game to support a family in Sochi and I really hope that our nation’s basketball family will get involved. It’s an honor for us to support the Walk Together Foundation, which has helped children with cerebral palsy for five years. Together, we can achieve a major victory and make this child’s life better. That’s an incredible feeling and it only takes one text message.
In addition to donating via text message, you can use this link or the form below.
var ie = document.all;
var moz = (navigator.userAgent.indexOf("Mozilla") != -1);
var opera = window.opera;
var brodilka = "";
if(ie && !opera){brodilka = "ie";}
else if(moz){brodilka = "moz";}
else if(opera){brodilka = "opera";}
var inputMasks = new Array();
function kdown(inpt, ev){
var id = inpt.getAttribute("id");
var idS = id.substring(0, id.length - 1);
var idN = Number(id.substring(id.length - 1));
inputMasks[idS].BlKPress(idN, inpt, ev);
}
function kup(inpt, ck){
if(Number(inpt.getAttribute("size")) == inpt.value.length){
var id = inpt.getAttribute("id");
var idS = id.substring(0, id.length - 1);
var idN = Number((id.substring(id.length - 1))) + 1;
var t = document.getElementById(idS + idN);
if(ck!=8 && ck!=9){
if(t){t.focus();}
} else if (ck==8) {
inpt.value = inpt.value.substring(0, inpt.value.length - 1);
}
}
}
function Mask(fieldObj){
var template = "(\\d{3})\\d{3}-\\d{2}-\\d{2}";
var parts = [];
var blocks = [];
var order = [];
var value = "";
var Block = function(pattern){
var inptsize = Number(pattern.substring(3, pattern.indexOf('}')));
var idS = fieldObj.getAttribute("id");
var idN = blocks.length;
var text = "";
var checkKey = function(ck){
return ((ck >= 48) && (ck <= 57)) || ((ck >= 96) && (ck <= 105)) || (ck == 27) || (ck == 8) || (ck == 9) || (ck == 13) || (ck == 45) || (ck == 46) || (ck == 144) || ((ck >= 33) && (ck <= 40)) || ((ck >= 16) && (ck <= 18)) || ((ck >= 112) && (ck <= 123)); } this.makeInput = function(){ return "";
}
this.key = function(inpt, ev){
if(opera) return;
if(!checkKey(ev.keyCode)){
switch(brodilka){
case "ie":
ev.cancelBubble = true;
ev.returnValue = false;
break;
case "moz":
ev.preventDefault();
ev.stopPropagation();
break;
case "opera":
break;
default:
}
return;
}
if(ev.keyCode == 8 && inpt.value == ""){
var tid = inpt.getAttribute("id");
var tidS = tid.substring(0, tid.length - 1);
var tidN = Number(tid.substring(tid.length - 1)) - 1;
var t = document.getElementById(tidS + tidN);
if(t != null) t.focus();
}
}
this.getText = function(){
text = document.getElementById(idS + idN).value;
return text;
}
this.setText = function(val){
text = val;
}
this.getSize = function() {
return inptsize;
}
}
this.drawInputs = function(){
var inputStr = "";
var p = 0;
var b = 0;
for (var i = 0; i < order.length; i++) { if (order[i] == "p") { inputStr += parts[p]; p++; } else { inputStr += blocks[b].makeInput(); b++; } } inputStr += "";
document.getElementById("div_" + fieldObj.getAttribute("id")).innerHTML = inputStr;
fieldObj.style.display = "none";
}
this.buildFromFields = function() {// constructor
var tmpstr = template;
while(tmpstr.indexOf("\\") != -1){
var slash = tmpstr.indexOf("\\");
var d = "";
if(tmpstr.substring(0, slash) != ""){
parts[parts.length] = tmpstr.substring(0, slash);
order[order.length] = 'p';
tmpstr = tmpstr.substring(slash);
}
var q = tmpstr.indexOf('}');
blocks[blocks.length] = new Block(tmpstr.substring(0, q + 1), d);
tmpstr = tmpstr.substring(q + 1);
order[order.length] = 'b';
}
if (tmpstr != "") {
parts[parts.length] = tmpstr;
order[order.length] = 'p';
}
this.drawInputs();
}
this.buildFromFields();
this.BlKPress = function(idN, inpt, ev){
blocks[idN].key(inpt, ev);
}
this.makeHInput = function(){
var name = fieldObj.getAttribute("name");
document.getElementById("div_" + fieldObj.getAttribute("id")).innerHTML =
"";
}
this.getFName = function(){
return fieldObj.getAttribute("name");
}
this.getValue = function(){
value = "";
var p = 0;
var b = 0;
for(var i = 0; i < order.length; i++){ /*if(order[i] == 'p'){ value += parts[p]; p++; } else { value += blocks[b].getText(); b++; } */ if (order[i] != 'p') { value += blocks[b].getText(); b++; } } return value; } this.check = function(){ for(var i in blocks){ if (blocks[i].getText().length == 0) return false; } return true; } }