
function tovar_add2basket_field_change(i)
{
  obj = document.getElementById("abf_" + i);
  text = obj.value;

  newText = '';
  roolNums = 0;
  for(i = 0; text.charAt(i); i++)
  {
    word = text.charAt(i);
    if(!isNaN(parseInt(word)))
    {
      newText += text.charAt(i);
      roolNums ++;
    }
  }

  obj.value = newText;
	if(obj.value != "")
    obj.style.backgroundColor='yellow';
  else
    obj.style.backgroundColor='none';
}

var set_submenu=function(s){
	document.getElementById('submenu_about').style.display='none';
	document.getElementById('submenu_forclient').style.display='none';
	if(document.getElementById(s)){		
		document.getElementById(s).style.display='block';}}
