function randInt(min,max)
{
     var div = (max - min) + 1
     var randNum = Math.random()
     for (var i = 0; i <= div - 1; i++)
     {
          if (randNum >= i / div && randNum < (i+1) / div)
          {return i + min}
     }
}


var abc = randInt(1,7);

if (abc == 1) {
  
      document.write("Call an old golf buddy! Relive the memories. He or she may become a new golf buddy for life.");

}

if (abc == 2) {

     document.write("Give your old clubs to a child or to a junior program! Are you really going to use them again? Most kids need clubs. The local golf shops can have them cut down to size, If necessary.");

}

if (abc == 3) {

     document.write("Attend a tour event. We have many in new york. You can watch close up how the professionals play and pick up some pointers.");

}
if (abc == 4) {

     document.write(" See your swing on video tape! This can be a real eye opener. Preferably watch your swing in slow motion. If you are really daring, compare it against some of the tour professional's swings..");

}
if (abc == 5) {

     document.write("Attend a golf school there are many available at many dIfferent price ranges.  Most are in great locations. This will be a golf improvement vacation. You will improve by totally dedicating a few consecutive days to instruction. Try to find a school that is compatible with the swing style your golf coach endorses.");

}
if (abc == 6) {

     document.write("Take a series of lessons! If Tiger needs instruction so do the rest of us. We all need coaching. Pick a coach and stick with them. There are many fine local PGA or LPGA professionals in our area. Take a lesson periodically to make sure your game is heading in the right direction.");

}
if (abc == 7) {

     document.write(" Analyze your game! At a minimum, after each round count how many fairways you drove your ball onto, how many greens you hit in regulation, and how many putts you had. More statistics will help you to improve your game. This will let you and your coach know exactly where your game needs work.");

}


