If you just want to redirect if the box is checked then:
Code:
if (document.fexp.multileg.checked)
{
window.location = "multileg1.asp";
}
if you want it to submit the form:
Code:
if (document.fexp.multileg.checked)
{
document.fexp.action = "multileg1.asp";
document.fexp.submit();
}
--
Joe (
Microsoft MVP - XML)