You can try adding a click event handler and returning true or false from the click handler based on the state of the switches.
Returning false should cancel clicking on the link, for example:
$("#hyperlink1").click(function(){ // return true or false based on your radio buttons return enableLink; });
source share