/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
window.onload = init;
function init(){
var yesButton = document.getElementById("optionYes");
var noButton = document.getElementById("optionNo");
yesButton.onclick = handleYesClick;
noButton.onclick = handleNoClick;

}
function handleYesClick(){
    alert("The Yes Button was clicked!");
    var url = "http://www.juristec.com/JurCheckout.html";
    var request = new XMLHttpRequest();
    window.location = url;
}
function handleNoClick(){
    alert("The No Button was clicked!");
}
