I was looking through your source code and it's.... different than what I do. Regardless, here's what you'll wanna do.
Add this in whatever function checks the form, and alter as necessary.
Code:
if (skiday07.lessons[0].checked)
{
skiday07.action = "page1.html";
}
else
{
skiday07.action = "page2.html";
}
skiday07.submit();
Should be all you need.
|