function clientLinkAction(id)
{
  var el = window.document.getElementById("basketlink"+id);
  var edit = window.document.getElementById("basketcount"+id);
  if (el && edit) {
    if (el.innerHTML.indexOf('купить') != -1) {
      if (edit.value == '') {
        alert('Необходимо указать количество');
        edit.focus();
      }
    } else {
      basketDel(id);
      edit.value = '';
      el.innerHTML = "<input type='submit' value='&raquo; купить' />";
    }	
 }
}
function clientSetCount(id)
{
  basketAddCount(id);

  setTimeout("clientSetCountAfter(" + id + ")", 500);
}
function clientSetCountAfter(id)
{
  var el = window.document.getElementById("basketlink"+id);
  var edit = window.document.getElementById("basketcount"+id);
  if (el && edit) {
    if (edit.value.match(/(\d+)|(^$)/) && edit.value != '') {
      el.innerHTML = "<input type='submit' value='&raquo; удалить' />";
    } else {
      el.innerHTML = "<input type='submit' value='&raquo; купить' />";
    }
  }
}

