function OpenQuotes()
{
window.open('dispTIPS.htm','SPATIPS','top=20,left=20,width=320,height=200,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no,titlebar=no');
}


function GiveQuotes()
{
   numquotes = 27;

   quote = new Array(30);
   bywho = new Array(30);

   quote[0] = "Banana Mask ";
   bywho[0] = "Mash very ripe banana, apply to face as a masque. Let dry 20 minutes. Rinse.";

   quote[1] = "Strawberry Tooth Polish";
   bywho[1] = "Mash ripe strawberry: use to brush teeth.";

   quote[2] = "Cool a Burn";
   bywho[2] = "Spray with lavender mixed with distilled water.";

   quote[3] = "Sun Burn Relief";
   bywho[3] = "Spray with lavender essesntial oil mixed with chilled distilled water.";

   quote[4] = "Pamper those Peepers";
   bywho[4] = "Cosmetic squares dipped in icy cold milk. Leave on 10 minutes.";

   quote[5] = "Honey Facial";
   bywho[5] = "Apply unprocessed honey to face, massage and let set 15 minutes. Rinse.";

   quote[6] = "Fruit Acid Dead Cell Remover";
   bywho[6] = "Mash raspberries with heavy cream and massage in. Let set 15 minutes. Rinse.";

   quote[7] = "Brewer's Yeast Mask ";
   bywho[7] = "Mix one tablespoon brewers yeast and two tablespoons milk. Apply to face let dry. Rinse.";

   quote[8] = "Toe Stretcher Exercise";
   bywho[8] = "Use a wide rubberband and hook over toes. Stretch and curl toes.";

   quote[9] = "Crows Feet Remover";
   bywho[9] = "REIKIROCKS and heavy cream chilled and dab lightly on crows feet.  Remove after 15 minutes.";

   quote[10] = "Clear Red Eye";
   bywho[10] = "Witch Hazel Soaked cotton pads. Place on closed eyelids for 15 minutes.";

   quote[11] = "Puffy Eyelid Cure";
   bywho[11] = "Ice cold cucumber slices on closed eyelids for 15 minutes.";

   quote[12] = "Clear Skin of Blotches";
   bywho[12] = "Drink 8 glasses of water per day.";

   quote[13] = "Unstuff your sinus";
   bywho[13] = "Inhale steam with 10 drops each eucalyptus and peppermint essential oil.";

   quote[14] = "Need a Natural Antibiotic";
   bywho[14] = "Natural antibiotic for an injury use: Tea Tree Oil.";

   quote[15] = "Cellulite Massage";
   bywho[15] = "Massage REIKIROCKS and Soothe Massage Oil with essential oil.";

   quote[16] = "Dewy Eyelids-Easy";
   bywho[16] = "Ice cold cucumber slices on closed eyelids for 15 minutes.";

   quote[17] = "Iced Towels";
   bywho[17] = "Essential oil, 2 drops, in bowl of water with ice.  Roll up hand towels and soak. Ring out and use over hot skin to refresh.";

   quote[18] = "Finger Towels";
   bywho[18] = "Essential oil, 2 drops, in bowl of  hot water  then microwave.  Roll up finger towels and soak. Ring out and use  before or after dining. We love lemon and lemongrass for this.";

   quote[19] = "Facial Steamer";
   bywho[19] = "Essential oil, 6 drops in steamy hot water. Place towel over head and breathe deep for 5 minutes.";

   quote[20] = "Bath Fizz Refresher";
   bywho[20] = "Essential oil, 6 drops in bath with 1/4 cup each ascorbic acid, baking soda in bath water.";

   quote[21] = "Natural Finish for Make-up";
   bywho[21] = "Essential oil, 6 drops in distilled water put in spray bottle and spray on at completion of make-up.";

   quote[22] = "Facial Splash";
   bywho[22] = "Essential oil, 6 drops in distilled water shake and chill.  Use after facial cleansing.";

   quote[23] = "Freshen Closets and Drawers";
   bywho[23] = "Essential oil, 6 drops in distilled water put in spray bottle and spray room, closets or drawers.";

   quote[24] = "Scent Your Candles";
   bywho[24] = "Essential oil, 2 drops in candle before you light.";

   quote[25] = "Mix Essential Oil Mixing Tip";
   bywho[25] = "Goddess Tip:  Always use distilled water for use  in a spray or splash.";

   quote[26] = "Mix Essential Oil with Massage Oil";
   bywho[26] = "Goddess Tip:  Always use unscented oil.  Can be poured on or sprayed on.";

   type = GiveQuotes.arguments[0];
   if (type == 2)
  	{
	j = 0;
	while (j < numquotes)
		{	
   	        document.write("<b>");
   	        document.write(quote[j]);
   	        document.write("</b><br>");
   	        document.write(bywho[j]);
   	        document.write("<BR><br>");
		j++;
		}
	}
   else {
   	i = Math.floor(Math.random() * numquotes);
   	document.write("<b>");
   	document.write(quote[i]);
   	document.write("</b><BR><br>");
   	document.write(bywho[i]);
   	document.write("");
	}
}
