function showList(pr_id,amnt) {
  c = document.stockForm.amount_1.value;
  sList = window.open("buy.php?pr_id=" + pr_id + "&count=" + c, "list", "width=250,height=210");
  sList.moveTo(500,300);
}
function showList2(pr_id,amnt) {
  eval("c = document.stockForm.amount_"+amnt+".value;")
  sList = window.open("buy.php?pr_id=" + pr_id + "&count=" + c, "list", "width=250,height=210");
  sList.moveTo(500,300);
}
function remLink() {
  if (window.sList && window.sList.open && !window.sList.closed)
    window.sList.opener = null;
}
function submitForm123(){
  //document.getElementById("cart").setAttribute("action","./index.php?mod=basket");
  document.getElementById("cart").submit();
}
function select_delivery(dev_id) {
  document.basket3.service[2].checked=true;
}
function select_payment(dev_id) {
  document.basket3.method[2].checked=true;
}


