

NUM      = 36
text     = new Array(NUM)
text[01] = "Squeeze thumb and forefinger together, forming a ridge above the thumb; the point is in the middle of that ridge, just above the end of the crease formed by thumb and forefinger; good for most problems from the waist up<BR><BR>"
text[02] = "Two thumb widths from the largest crease on the inside wrist; the point is between the tendons in the middle of the wrist<BR><BR>"
text[03] = "Two thumb widths above the outside of the wrist, lined up with the middle finger<BR><BR>"
text[04] = "In the depression just behind the outer anklebone<BR><BR>"
text[05] = "One palm width above the tip of the inner anklebone, on the back of the shinbone; often used in combination with acupoint #6<BR><BR>"
text[06] = "One palm width below the bottom edge of the kneecap, on the outside, in a depression between the shinbone and the leg muscle; effective for most problems from the waist down, especially when used with acupoint #5<BR><BR>"
text[07] = "Clasp your hands together (A), touching your upper wrist with your forefinger; the point is found on a line with the thumb, in a small depression (B); remembering the position of the point, unclasp your hands and apply pressure"
text[08] = "Bend your arm, hand to shoulder, and place your finger on the end of the crease of the arm; open your arm and stimulate the point<BR><BR>"
text[09] = "Between the two ligaments, behind the knee, on the crease formed when the leg is bent; note: if you have varicose veins, don't use this point<BR><BR>"
text[10] = "Just behind the thumbnail, on the side opposite the fingers<BR><BR>"
text[11] = "On the largest crease of the inner wrist, on a line with the little finger<BR><BR>"
text[12] = "On the largest crease of the inner wrist, on a line with the thumb<BR><BR>"
text[13] = "One palm width below the navel; another point with similar effects can be found two thumb widths below this one<BR><BR>"
text[14] = "On the crease of the inside of the elbow, on the thumb side<BR><BR>"
text[15] = "On the middle finger, just above the nail, on the side closest to the thumb<BR><BR>"
text[16] = "Between the two most prominent bones of the top of the spine<BR><BR>"
text[17] = "On top of the shoulder, half way between the neck and the outside of the shoulder<BR><BR>"
text[18] = "Just behind the nail of the second toe, on the side opposite the big toe<BR><BR>"
text[19] = "On either side of the place where the spine meets the skull<BR><BR>"
text[20] = "On the big toe,  the side closest to the second toe, just behind and slightly to the side of the nail<BR><BR>"
text[21] = "In the middle of the sole of the foot, just behind the ball<BR><BR>"
text[22] = "Just above the place where the second and third toes separate<BR><BR>"
text[23] = "Below the brow ridge at the corner of the eye nearest the bridge of the nose, just below a notch in the skull<BR><BR>"
text[24] = "Just below or inside the eyebrow, near the middle; feel for a notch in the eyebrow ridge; point should be just slightly above this<BR><BR>"
text[25] = "On the back, on a line with the elbows, about two thumb widths on either side of the spine<BR><BR>"
text[26] = "Pinch the nostril, on the side opposite the septum; good for severe headache<BR><BR>"
text[27] = "Slightly to the back of the muscle which goes from neck to shoulder, a little closer to the arm than to the neck<BR><BR>"
text[28] = "On the outside of the foot, slightly to the rear of the last knucklebone of the smallest toe<BR><BR>"
text[29] = "On the back of the jawbone, just below the ear<BR><BR>"
text[30] = "Two thumb widths above where the big toe and the second toe separate, on the upper surface of the foot<BR><BR>"
text[31] = "Just above where the big toe and the second toe separate, on the upper surface of the foot<BR><BR>"
text[32] = "On the cheek, next to the outside of the nostril<BR><BR>"
text[33] = "Behind the inner anklebone, on a line between the crown and the tip of the heel; often used in combination with acupoint # 36<BR><BR>"
text[34] = "On the tip of the shoulder; pick up your arm and look for the a dimple toward the back of the shoulder.; put your finger in the dimple, lower your arm and begin stimulation<BR><BR>"
text[35] = "On the center of the chest, just below the bottom of the sternum (breast bone)<BR><BR>"
text[36] = "Two palm widths plus one thumb width above the outer ankle bone, just behind an imaginary vertical line from the tip of the ankle bone; often used in combination with acupoint #33<BR><BR>"




function PopUp(list,title) {
  if ( list != "00" ) {

    win=window.open("","Acupressure","resizable=yes,scrollbars=yes,height=475,width=500")
    src   = 'images/'

    doctext = ('<html><head><title>Acupressure - ' + title + '</title></head>')
    doctext = doctext + ('<body background=' + src + 'clouds2.jpg>')
    doctext = doctext + ('<center>')

    doctext = doctext + ('<H1>' + title + '</H1>')
	doctext = doctext + ('<b>M</b> = Seek <b>M</b>edical attention; <b>EM!</b> = Potential need for <b>E</b>mergency <b>M</b>edical attention (in the U.S.A., consider calling 911.)')
    doctext = doctext + ('</center><img src=images/black_pixel.gif width=264 height=1 vspace=5><center>')

    for ( i = 0; i < ((list.length)/2); i++ ) {
      point = list.substring(2*i,2*i+2)

      doctext = doctext + ('<IMG SRC=' + src + 'acu' + point + '.gif align=right hspace=5>')
	  doctext = doctext + ('<H2>' + 'Acupoint ' + point + '</H2>')
      doctext = doctext + ('<B>' + text[eval(point)] + '</B><br clear=all>' + '<BR>')
      doctext = doctext + ('</center><img src=images/black_pixel.gif width=264 height=1 vspace=5><center>')
    }

    doctext = doctext + ('</center>')
    doctext = doctext + ('</body>')
    doctext = doctext + ('</html>')

    win.document.write(doctext)
  }

  return true
}

