
// JavaScript Document


function confirmation() {
var answer = confirm("By clicking the OK button you are agreeing that you have read the disclaimer and will now be transfered.");
  if (answer){
 
    window.location = "http://www.centenniallaw.com/legalinfo.html";
  }
else{
    alert("In order to see the Legal Info Page, you must agree that you have read the disclaimer.");
	 
  }
}

