﻿/*
$("input#ConfirmTerms").click(
   function() {
      if (this.checked) {
         document.getElementById("Submit").src= "img/KNAPP_vidare.gif";
         $("input#Submit").unset("disabled");
      }
      else {
         document.getElementById("Submit").src= "img/KNAPP_vidare_off.gif";
         $("input#Submit").set("disabled","disabled");
      }
   }
);
*/
function ConfirmTerms_Click(chekBox) {
   var button = document.getElementById("Submit");

   button.src = "img/KNAPP_vidare" + (chekBox.checked ? "" : "_off") + ".gif";
   button.disabled = chekBox.checked ? "" : "disabled";
   //alert(button.src);
}
