
function validate()
{
  if (document.disclaimer.validation.checked == false)
  {
    alert("You must accept the decleration before you can visit this link.");
    document.execCommand("refresh");
  }
}

