Dear Folks,
I have a radio group at the top of my form. In another section I have a button. When this is clicked, a pop-up opens out. Now the page for this pop-up depends on the radio button checked. I am doing something like this.
function modSel(){
if(document.pngen.system.value=="C")
popUp('ModSelect2.htm');
else
popUp('ModSelect1.htm');
}
The document.pngen.system.value is always 'undefined' even when a radio button is clicked. Am I missing something.
Will you help me, Please!!
Thanks
Arun
I have a radio group at the top of my form. In another section I have a button. When this is clicked, a pop-up opens out. Now the page for this pop-up depends on the radio button checked. I am doing something like this.
function modSel(){
if(document.pngen.system.value=="C")
popUp('ModSelect2.htm');
else
popUp('ModSelect1.htm');
}
The document.pngen.system.value is always 'undefined' even when a radio button is clicked. Am I missing something.
Will you help me, Please!!
Thanks
Arun