Forum Moderators: phranque
I included a snippet of code to show you how it works.
<script language="JavaScript">
if (confirm("Click OK to visit Yahoo.com")) {
location.href="http://www.yahoo.com/"
}
else {
alert("You clicked Cancel! Oh well- you're still going to Yahoo!");
location.href="http://www.yahoo.com/"
}
</script>