function showDetail(recID){	elementName = 'Detail_'+recID;	/* reID used to hold state abbreviations. Now will always test negative. */	if (recID=='XXX'){ 		countyMenu=document.getElementById('County_Selector');                        var menuOptions=new Array();                        menuOptions['FL']=['::Select your county::','Dade','Broward','Other'];                        menuOptions['optFL']=['XX','_1','_1','_2'];                        menuOptions['IL']=['::Select your county::','Cook','Other'];                        menuOptions['optIL']=['XX','_1','_2'];                        menuOptions['MI']=['::Select your county::','Macomb','Oakland','Wayne','Other'];                        menuOptions['optMI']=['XX','_2','_2','_2','_1'];                        menuOptions['NY']=['::Select your county::','5 Boroughs','Nassau','Suffolk','Westchester','Other'];                        menuOptions['optNY']=['XX','_1','_1','_1','_1','_2'];                        menuOptions['PA']=['::Select your county::','Philadelphia','Delaware','Montgomery','Other'];                        menuOptions['optPA']=['XX','_1','_1','_1','_2'];                        menuOptions['TX']=['::Select your county::','Brazoria','Cameron','Fort Bend','Galveston','Harris','Hidalgo','Jefferson','Montgomery','Orange','Other'];                        menuOptions['optTX']=['XX','_2','_2','_2','_2','_2','_2','_2','_2','_2','_1'];                        textcur=menuOptions[recID];                        optcur=menuOptions["opt" + recID];                        countyMenu.options.length=textcur.length;                        for(var i=0;i<textcur.length;i++)                        {                                countyMenu.options[i].text=textcur[i];                                countyMenu.options[i].value=optcur[i];                        }		Element.show('Detail_County');		Element.hide('goButton');	} else if (recID=='XX'){		Element.hide('goButton');	} else{		Element.hide('Detail_County');		Element.show('goButton');	}}function goCounty(countyselected){	if(countyselected=='XX'){		Element.hide('goButton');	} else{		Element.show('goButton');	}}function updateAction(selection){	document.selector.action = selection.value;	if (selection.text == "Nurse Practitioners" || selection.text == "AAPA Physician Assistants"){		Element.hide('stateSelector');		Element.show('goButton');	} else if (selection.text == "Nurses [RN/LPNs]"){		document.getElementById('direct').value = 'NewOrRenew';		document.getElementById('direct').name = 'event';	} else{		Element.show('stateSelector');		Element.hide('goButton');	}}
