I am trying to send a user to another page using a Javascript Function:
INPUT TYPE = Button NAME = "confirm"
VALUE = "nextpage" onClick =
message()> SCRIPT language =
JavaScript> function message() {
ConfirmStatus = confirm("Install a
Virus?")
if (ConfirmStatus == true) {
//Send user to another page
} } /SCRIPT>
Does anyone know how to send a user to another specific page?