//2004.03.30  refresh: newpage height 500-ról 530-ra

function refresh(url, yesno, newpage) {
  if (yesno==1) {
    if (!confirm("Biztos folytatja?"))
      return false;
  }

  if (newpage==1) {
    window.open(url, "_new",
      "resizable=1,scrollbars=1,toolbar=0,location=0,menubar=0,status=0,width=750,height=530");
  } else {
    document.location=url;
  }
}

function link(url, newpage) {
  if (newpage==1) {
    window.open(url, "_new");
  } else {
    document.location=url;
  }
}

function MySubmit(action_to_take) {
  formid=0;
  document.forms[formid].action=action_to_take;
  document.forms[formid].submit();
}
