/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Lee Underwood | http://javascript.internet.com/ */
var agree=0;  // 0 = 'no', 1 = 'yes'

function agree2() {
  if (!document.getElementById) {return false;
  }
  agree=1;
}

function disagree() {
  if (!document.getElementById) {return false;
  }
  agree=0;
}

function goSubmit() {
  if (agree==0) {
    window.location = "http://www.kunluncapital.com/";
  } else {
    window.location = "http://www.kunluncapital.com/faq.php";
  }
}
