Figures I find something that solves my first problem right after I post! So now the alert opens on the "no" selection of the radio button. In that dialog box, I would like to build an "if and then" statement. Yes opens another html page, no captures the "no" value and close the dialog box.
Here is the script I found and inserted.
<div class="form-check">
<div class="col-3 pr-0 text-float-right">
<input class="form-check-input" type="radio" name="HLdefault" id="HL_defaultno"
onclick="showMessage()" value="hl2">
<label class="form-check-label font-weight-bold text-danger" for="HL_defaultno">No</label>
</div>
<script>
function showMessage() {
// Example displaying an alert
alert("Would you like to create an Issue?")
}
</script>
</div>