I am just not familiar enough with Javascript to get this to work. I have a radio button that displays an ok & cancel button when you click on the radio button. I want to send the client to another HTML page when they click okay. If they click cancel I want them to stay on the page. Here is my code.
<script>
<!--
function GP_popupConfirmMsg(msg) { //v1.0
document.MM_returnValue = confirm(msg);
If (document.MM_returnValue == 'true'){
window.location = 'altsurvey.cfm';
}
//-->
</script>
<script>
<!--
function GP_popupConfirmMsg(msg) { //v1.0
document.MM_returnValue = confirm(msg);
If (document.MM_returnValue == 'true'){
window.location = 'altsurvey.cfm';
}
//-->
</script>