var button;

function checkToimitustapa() {

  isChecked=false;
  if (document.ostoskori.tt_valitse == undefined) {
    return true;
  }
  var ttCount=parseInt(document.ostoskori.tt_valitse.length);
  if (ttCount > 0) {
    for (var i=0; i < ttCount; i++) {
      if (document.ostoskori.tt_valitse[i].checked) {
        isChecked=true;
        break;
      }
    }
  } else {
    if (document.ostoskori.tt_valitse.checked) {
      isChecked=true;
    }
  }

  if (!isChecked && (button!="okori_paivita" || button != "muutakpl")) {

    alert("Please choose the delivery method.\n\nValitse toimitustapa!");
    return false;
  }
  return isChecked;
} //func

