<SCRIPT language="JavaScript">
if(confirm("Are you sure you wish to delete the selected group(s) and all link(s) contained in the group(s)?") == true)
{
document.write("<? some php ?>");
}
else
{
document.write("<? some other php ?>");
}
</SCRIPT>
Regardless of clicking OK or Cancel the code inside both branches of the if statement is processed. What is going on?!
;-(
-Paul