//change 5 to the total number of questions
var total=20
var question=new Array()
for (i=1;i<=total+1;i++){
temp="choice"+i+"=new Array()"
eval(temp)
}
var solution=new Array()

/*Below lists the phrases that will be randomly displayed if the user correctly answers the question. You may extend or shorten this list as desired*/
var compliments=new Array()
compliments[0]="Excellent!"
compliments[1]="Wow, you're really rocking!"
compliments[2]="You must have studied hard. Good job!"
compliments[3]="Right on."
compliments[4]="Correct!"
compliments[5]="Great Job!"
compliments[6]="Good work!"


/*Below lists the questions, its choices, and finally, the solution to each question. Folow the exact format below when editing the questions. You may have as many questions as needed. Check doc at http://javascriptkit.com/script/script2/comboquiz.htm for more info
*/

question[1]="The Human Immunodeficiency Virus (HIV) has been found in human saliva."
choice1[1]="True"
choice1[2]="False"

question[2]="A person who is HIV positive also has AIDS."
choice2[1]="True"
choice2[2]="False"

question[3]="Pregnant women who are HIV positive have a 95% chance of transmitting the virus to their baby."
choice3[1]="True"
choice3[2]="False"

question[4]="Coughing can transmit HIV to another person."
choice4[1]="True"
choice4[2]="False"

question[5]="When individuals have AIDS, it is likely that they will also have Tuberculosis."
choice5[1]="True"
choice5[2]="False"

question[6]="Most people who die from AIDS, die from illnesses that occur secondary to AIDS. "
choice6[1]="True"
choice6[2]="False"

question[7]="A person who is HIV positive will always test positive if the test is reliable."
choice7[1]="True"
choice7[2]="False"

question[8]="HIV in a drop of blood once leaving the body will die immediately.  "
choice8[1]="True"
choice8[2]="False"

question[9]="The healthier a person is, the less likely he or she is to be infected by the HIV.  "
choice9[1]="True"
choice9[2]="False"

question[10]="A \“window period\” refers to a period of  time when the symptoms of AIDS seem to temporarily go away. "
choice10[1]="True"
choice10[2]="False"

question[11]="HIV AIDS is transmitted in the following ways: "
choice11[1]="By coughing, sexual secretions and blood"
choice11[2]="By sexual secretions, blood and breast milk"
choice11[3]="By blood, mosquitoes and sexual secretions"
choice11[4]="By sexual secretions, blood, breast milk and coughing"

question[12]="The following are persons at high risk to be HIV positive:"
choice12[1]="Sex workers, bar maids, adolescents and farmers"
choice12[2]="Sex workers and truck drivers "
choice12[3]="People who live with someone who is HIV positive"
choice12[4]="Persons over 50"

question[13]="When counseling a person who is HIV positive, one should:"
choice13[1]="Keep a safe distance so as not to become infected"
choice13[2]="Be accepting of the person regardless of how they became infected"
choice13[3]="Present the gospel immediately as there is danger of death"
choice13[4]="Be certain that the spouse or family is told about the person’s HIV status	"

question[14]="An HIV test for pregnant women can:"
choice14[1]="Cause premature labor and should not be done"
choice14[2]="Allow for informed decisions to be made"
choice14[3]="Prevent the newborn from getting infected"
choice14[4]="Not be done is most countries because the cost is too high"

question[15]="One can be certain to prevent getting HIV by:"
choice15[1]="Using a condom"
choice15[2]="Careful handwashinge"
choice15[3]="Using herbal preparations"
choice15[4]="None of the above"

question[16]="Hospice care is begun when:"
choice16[1]="Orphaned children have no where to go"
choice16[2]="A widow is grieving and needs comfort"
choice16[3]="A person has only weeks or months to live"
choice16[4]="A person is first diagnosed with AIDS"

question[17]="A cure for HIV/AIDS:"
choice17[1]="Has been found but is very expensive and not available to many countries"
choice17[2]="Has not yet been found"
choice17[3]="Is in trial stages but will soon be available "
choice17[4]="None of the above"

question[18]="The number of cases of HIV/AIDS is:"
choice18[1]="Decreasing in most of the world"
choice18[2]="Increasing in most of the world"
choice18[3]="Leveling off in most of the world"
choice18[4]="No one really knows"

question[19]="Latin America"
choice19[1]="Has very few cases as compared to the rest of the world"
choice19[2]="Has more cases per capita than Africa"
choice19[3]="Has the second highest prevalence of HIV in the world"
choice19[4]="Has the sixth highest prevalence of HIV in the world"

question[20]="In Central Asia and the Baltic nations:"
choice20[1]="Transmission of HIV is primarily by Intravenous drug use"
choice20[2]="Certain mine areas have high infection rates"
choice20[3]="Antiretroviral drugs (anti-aids medicines) are free"
choice20[4]="None of the above"

solution[1]="a"
solution[2]="b"
solution[3]="b"
solution[4]="b"
solution[5]="a"
solution[6]="a"
solution[7]="b"
solution[8]="b"
solution[9]="b"
solution[10]="b"
solution[11]="b"
solution[12]="b"
solution[13]="b"
solution[14]="b"
solution[15]="d"
solution[16]="c"
solution[17]="b"
solution[18]="b"
solution[19]="c"
solution[20]="a"
