| Author: Appukuttan 22 Nov 2008 | Member Level: Diamond | Rating: Points: 6 |
Hi..
<script type="text/javascript"> function checkForm(form) { var nradio=0; var checked = false; for (n=0; n<form.length; n++) { if (form[n].type == 'chk') { nradio++; } } for (i=1; i<nradio; i++) { if(form.document.getElementById('ctl00_ContentPlaceHolder1_rbtn'+i).checked == true) { checked = true; break; } } if(!checked) { alert("you have to choose a any one option"); window.event.returnValue = false; } return checked; } function CallCircularToAll() { window.open('CircularToAll.aspx',null,'modal=1,height=300,width=500,status=no,location=no,directories=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=no,left=80,top=30,screenX=100,screenY=30'); } function CallPersonwiseCircular() { window.open('Circular.aspx',null,'modal=1,height=300,width=450,status=no,location=no,directories=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=no,left=80,top=30,screenX=100,screenY=30'); } </script>
|