var GdbName = "/EventRegistration.nsf/"; function showhideRadioElement(theField, tClass, tTxtOther) { // theField = the specifc elements // tClass = the ID of the scan or div to show/hide // tTxtOther = The field of the Other list so when we 'hide' the element we also blank out any value that was in it. if(theField.value == 'Other') { //Show document.getElementById(tClass).style.display = 'inline' } else { // Hide document.getElementById(tClass).style.display = 'none'; tTxtOther.value=''; } } function showhideRadioElementYes(theField, tClass, tTxtOther) { // theField = the specifc elements // tClass = the ID of the scan or div to show/hide // tTxtOther = The field of the Other list so when we 'hide' the element we also blank out any value that was in it. if(theField.value == 'Yes') { //Show document.getElementById(tClass).style.display = 'inline' } else { // Hide document.getElementById(tClass).style.display = 'none'; tTxtOther.value=''; } } function popit(lnk,tit) { pop_up_win=window.open( lnk, tit, 'width=500, height=300,scrollbars=yes,status=no,resizable=yes,toolbar=no,location=no,menubar=no'); if (pop_up_win.opener == null) { pop_up_win.opener = self; } pop_up_win.focus(); }