<!-- Begin
var image= new Array()
image [1] = "pai.jpg"
image [2] = "gm.jpg"
image [3] = "instructors.jpg"
image [4] = "don.jpg"
image [5] = "seefdon.jpg"
image [6] = "camp.jpg"
image [7] = "pailum.jpg"
image [8] = "kids.jpg"
image [9] = "taichi.jpg"
image [10] = "weapons.jpg"
image [11] = "kickboxing.jpg"
image [12] = "kardio.jpg"
image [13] = "randy.jpg"
image [14] = "wingchun.jpg"


var text = new Array()
text [1] = "Grandmaster Daniel Kane Pai"
text [2] = "Grandmaster Daniel Kane Pai and Grandmaster Glenn C. Wilson"
text [3] = "Some certified Instructors in the White Dragon Warrior Society with Grandmaster Glenn C. Wilson"
text [4] = "Coming out of a 8 year retirement from the ring, Sifu Don \'the Dragon\' Wilson at his May 14, 1999 victory in Massacusetts."
text [5] = "Sifu Don \'the Dragon\' Wilson and Sifu Bobby Earl"
text [6] = "Training at camp with Grandmaster and Simo Wilson"
text [7] = "Shots of our Pai Lum Kung Fu classes"
text [8] = "Shots of our kids Pai Lum Kung Fu classes"
text [9] = "Shots of our Tai Chi classes"
text [10] = "Examples of some Traditional Chinese Weapons by our Chief Instructor, Sifu Bobby Earl"
text [11] = "Standard and International Kickboxing - featuring: Kelli Ann and Janet"
text [12] = "Kardio Kung Fu and Kickboxing Class"
text [13] = "Sifu Randy Williams - Close Range Combat Academy"
text [14] = "Shots of our Wing Chun Gung Fu classes"

var max=image.length-1;
var wdwsmax=11;

function go(name) {
 for(var p=1; p<=max; p++){
   if(name==image[p]){
      target=p;}
   }
 document.location="pic.shtml?" + home + "=" + target;
 return true;
}

function next() {
 if (nextimage > max) {
    back();
    return true;
 }
 if (nextimage > wdwsmax) {
    if (home == "wdws") {
       back();
       return true;
    }
 }
 document.location="pic.shtml?" + home + "=" + nextimage;
 return true;
}

function previous() {
  if(previousimage < 1 ) {
     back();
     return true;
  }
  else {
     document.location="pic.shtml?" + home + "=" + previousimage;
     return true;
  }
}

function back() {
  if(home=="wdws") {
     document.location="wgallery.html";
     return true;
  }
  else {
     document.location="gallery.shtml";
     return true;
  }
}

// End-->
