<!--
// Create arrays to contain all the values 
// for links and question locations
link = new Array
question = new Array

link[1]="http://www.snyderhealth.com/faq.htm#quest01"
question[1]="Do I really have to adhere to such a strict diet plan while taking the supplements?"

link[2]="http://www.snyderhealth.com/faq.htm#quest08"
question[2]="How much water should I drink each day?"

link[3]="http://www.snyderhealth.com/faq.htm#quest15"
question[3]="Is it possible to be too alkaline?"

link[4]="http://www.snyderhealth.com/faq.htm#quest16"
question[4]="How do I know if I am out of balance?"

link[5]="http://www.snyderhealth.com/faq.htm#quest17"
question[5]="What is a Cleanse?"

link[6]="http://www.snyderhealth.com/faq.htm#quest18"
question[6]="What can I expect during the Cleanse?"

link[7]="http://www.snyderhealth.com/faq.htm#quest19"
question[7]="How should I change my diet to lose weight and feel more energy?"

link[8]="http://www.snyderhealth.com/faq.htm#quest21"
question[8]="I don't like the taste of the &quot;greens.&quot;&nbsp; What can I do to improve taste, as I like the energy I feel when I take them?"

link[9]="http://www.snyderhealth.com/faq.htm#quest22"
question[9]="Why do the colloidal products sometimes have a metallic flavor?"

link[10]="http://www.snyderhealth.com/faq.htm#quest23"
question[10]="How can I expect to feel physically?&nbsp; Are there any side effects?"

link[11]="http://www.snyderhealth.com/faq.htm#quest24"
question[11]="Should I continue to take my prescription medication?"

link[12]="http://www.snyderhealth.com/faq.htm#quest26"
question[12]="How Can 'Acidic' Fruits Be Alkalizing?"

link[13]="http://www.snyderhealth.com/faq.htm#teas"
question[13]="Can you tell me where green tea places on your list of Alkaline and Acid-producing foods? Also, does it make any difference if the tea is decaffeinated?"

link[14]="http://www.snyderhealth.com/faq.htm#quest27"
question[14]="Is soda really all that bad?"

link[15]="http://www.snyderhealth.com/faq.htm#mushrooms"
question[15]="I know that some mushrooms are very poisonous, but aren't there health benefits to eating certain mushrooms?"

link[16]="http://www.snyderhealth.com/faq.htm#quest28"
question[16]="If I don't drink milk, won't my bones break?"

link[17]="http://www.snyderhealth.com/faq.htm#quest31"
question[17]="If I don't eat meat where do I get my protein?"

link[18]="http://www.snyderhealth.com/faq.htm#quest34"
question[18]="Why is Super Hydration so important?"

link[19]="http://www.snyderhealth.com/faq.htm#cancer"
question[19]="Is there a connection between body fluid pH and cancer?"


// Create a random number between 1 and 19
random_faq = (Math.round((Math.random()*18)+1))


// Write a link and questions with random array
function showQuestion(){
document.write("<p><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><strong>" + question[random_faq] + "</strong></font></p>");
document.write("<font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\"><a href=\"" + link[random_faq] + "\">View Answer</a></font>&nbsp;<a href=\"" + link[random_faq] + "\"><img src=\"images/arrow2.gif\" width=\"7\" height=\"7\" border=\"0\"></a><br>");
}
-->