One of the guys here figured it out and it worked...to reference the frame - put the function in the main (outer) frame...
Reference the Frame by top.frameName.FormName.radioGroupName.value......(example below)
function dslType()
{
if (top.centerConfig.fm10.dslType[0].checked != true)
{
alert("Please check the correct DSL type.");
popNotes();
return false;
}
if (top.centerConfig.fm10.dslType[1].checked == true)
{
alert("Please check the correct DSL type.");
popNotes();
return false;
}
if(top.centerConfig.fm2.networking[0].checked != true)
{
alert("Please select the correct radio button for Home Networking.");
popNotes();
return false;
}
return true;
}
Then add the following to the form containing the Continue/Submit button...
<form name="buttons" action="01index.htm" method="get" onSubmit="return dslType(this);">
Let me know if anyone has any questions about it.
Melissa