function avalibleYears(){//gui var x=document.getElementById("taxYear"); var option; while(x.length>0){ x.remove(0); } option=document.createElement('option'); option.value="2008"; option.innerHTML="2008"; if(typeof window['Fed2008']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2009"; option.innerHTML="2009"; if(typeof window['Fed2009']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2010"; option.innerHTML="2010"; if(typeof window['Fed2010']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2011"; option.innerHTML="2011"; if(typeof window['Fed2011']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2012"; option.innerHTML="2012"; if(typeof window['Fed2012']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2013"; option.innerHTML="2013"; if(typeof window['Fed2013']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2014"; option.innerHTML="2014"; if(typeof window['Fed2014']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2015"; option.innerHTML="2015"; if(typeof window['Fed2015']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2016"; option.innerHTML="2016"; if(typeof window['Fed2016']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2017"; option.innerHTML="2017"; if(typeof window['Fed2017']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2018"; option.innerHTML="2018"; if(typeof window['Fed2018']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); option=document.createElement('option'); option.value="2019"; option.innerHTML="2019"; if(typeof window['Fed2019']==='function') option.style.color="green"; else option.style.color="purple"; x.add(option,x[0]); } //File Generated on 2025-12-23 16:26:46