function fclear() {
  document.thisForm.emaill.value = ""
}

function fclear2() {
  document.thisForm.pwl.value = ""
}

function Login(id, URL) {
  document.thisForm.action = URL + "/verify.asp"
  document.thisForm.method = "post"
  document.thisForm.submit()
}

function NewsLogin(id, URL) {
  document.thisForm.action = URL + "/news_verify.asp"
  document.thisForm.method = "post"
  document.thisForm.submit()
}

function ChkPForm() {
  if (document.thisForm.email1.value.length == 0) {
    document.thisForm.email1.select()
    return false;
  }
}

function ChkAForm() {
  if (document.thisForm.email_a.value.length == 0) {
    document.thisForm.email_a.select()
    return false;
  }
}

