function OpenDef() {
	if (document.Form1.ddlReason.options[document.Form1.ddlReason.selectedIndex].value == "Allergies")
		{fdWindow= window.open('http://www.odh.ohio.gov/pdf/foodRecall/fddefine/allergens.pdf','fdwin','width=640,height=480')}
	else if (document.Form1.ddlReason.options[document.Form1.ddlReason.selectedIndex].value == "Chemical")
		{fdWindow= window.open('http://www.odh.ohio.gov/pdf/foodRecall/fddefine/fd_chemical.htm','fdwin','width=640,height=480')}	
	else if (document.Form1.ddlReason.options[document.Form1.ddlReason.selectedIndex].value == "Physical")
		{fdWindow= window.open('http://www.odh.ohio.gov/pdf/foodRecall/fddefine/phyhazs.pdf','fdwin','width=640,height=480')}		
	else if (document.Form1.ddlReason.options[document.Form1.ddlReason.selectedIndex].value == "Bacterial")
		{fdWindow= window.open('http://www.odh.ohio.gov/pdf/foodRecall/fddefine/fd_disease.htm#bac','fdwin','scrollbars=yes,width=640,height=480')}		
	else if (document.Form1.ddlReason.options[document.Form1.ddlReason.selectedIndex].value == "Parasitic")
		{fdWindow= window.open('http://www.odh.ohio.gov/pdf/foodRecall/fddefine/fd_disease.htm#par','fdwin','scrollbars=yes,width=640,height=480')}		
	else if (document.Form1.ddlReason.options[document.Form1.ddlReason.selectedIndex].value == "Viral")
		{fdWindow= window.open('http://www.odh.ohio.gov/pdf/foodRecall/fddefine/fd_disease.htm#vir','fdwin','width=640,height=480')}		
	else
		{alert("No definitions found for selected reason for recall type")}
}