/*****************************************************/
/**************     Nolimitz Team       **************/
/*****************************************************/

var p1         = "";      /* Rider Number for Team PopUp   */
var np1        = 1;

var nTeamCount = 19;

function RiderRec() { 
   this.Id         = "2";
   this.Name       = ""; 
   this.Pic        = ""; 
   this.Home       = "";
   this.Profession = ""; 
   this.FavDisc    = ""; 
   this.FavMove    = "";  
   this.FavSite    = "";
   this.Sponsors   = ""; 
   this.email      = ""; 
   this.url        = ""; 
   this.About      = "";
}

function TeamObject() {
   this.Path  = "./pix/team/";
}

TeamObject.prototype.Show = function() {
    for (i = 1; i <= nTeamCount; i++) {  this.Show_Team_Rider( aRiders[i] ); }
}

TeamObject.prototype.Show_Team_Rider = function( RiderRec ) {
   document.write( '<hr>' );
   document.write( '<table class="Team" width="100%" cellpadding="0" cellspacing="0" border="0">' );
   document.write( '<tr>' );
   document.write( '    <td rowspan="3" width="170" align="center">' ); 
   document.write(        '<img src="' + RiderRec.Pic + '" alt="" border="0">' );
   document.write( '   </td>' );
   document.write( '   <td valign="top" align="left">' );
   document.write( '       <div class="TeamName">' + RiderRec.Name + '</div>' );
   document.write( '   </td>' );
   document.write( '</tr>' );
   document.write( '<tr>' );
   document.write( '   <td valign="top" align="left">' );
   this.Show_Rider_Specs( RiderRec );
   document.write( '   </td>' );
   document.write( '</tr>' );
   document.write( '<tr>' );
   document.write( '   <td valign="bottom">' );
   document.write( '      <a class="Links2" href="javascript:Rider_PopUp(' + RiderRec.Id +')">  For More Info... </a>' );
   document.write( '   </td>' );
   document.write( '</tr>' );
   document.write( '</table>' );
}

TeamObject.prototype.Show_Rider_Specs = function( RiderRec ) {
   document.write( '<table cellpadding="0" cellspacing="0" width="100%" border="0">');
   document.write( '<tr valign="top">' );
   document.write( '   <td align="right"><b>eMail:&nbsp;&nbsp;</b></td><td>' );
   document.write( '      <a class="Links4" href="mailto:' +  RiderRec.email + '">' +  RiderRec.email +'</a>');
   document.write( '  </td>');
   document.write( '</tr>' );
   document.write( '<tr valign="top">' );
   document.write( '   <td align="right" width="80"><b>Hometown:&nbsp;&nbsp;</b></td><td>' +  RiderRec.Home +'</td>' );
   document.write( '</tr>' );
   document.write( '<tr valign="top">' );
   document.write( '   <td align="right"><b>Profession:&nbsp;&nbsp;</b></td><td>' +  RiderRec.Profession +'</td>' );
   document.write( '</tr>' );

   if (RiderRec.Sponsors!="") {
      document.write( '<tr valign="top">' );
      document.write( '   <td align="right"><b>Sponsors:&nbsp;&nbsp;</b></td><td>' +  RiderRec.Sponsors +'</td>' );
      document.write( '</tr>' ); 
   }

   if (RiderRec.url!="") {
      document.write( '<tr valign="top">' );
      document.write( '   <td align="right"><b>Web Site:&nbsp;&nbsp;</b></td><td>' +  RiderRec.url +'</td>' );
      document.write( '</tr>' );
   }

   document.write( '</table>' );
}

TeamObject.prototype.Show_Rider_Popup = function( RiderRec ) {
   document.write( '<table class="Team" width="680" cellpadding="0" cellspacing="0" border="0">' );
   document.write( '<tr>' );
   document.write( '    <td rowspan="2" width="170" align="center">' ); 
   document.write(        '<img src="' + RiderRec.Pic + '" alt="" border="0">' );
   document.write( '   </td>' );
   document.write( '   <td valign="top" align="left">' );
   document.write( '       <div class="TeamName">' + RiderRec.Name + '</div>' );
   document.write( '   </td>' );
   document.write( '</tr>' );
   document.write( '<tr>' );
   document.write( '   <td valign="top" align="left">' );
   this.Show_Rider_Specs( RiderRec );
   document.write( '   </td>' );
   document.write( '</tr>' );
   document.write( '</table>' );
}

TeamObject.prototype.Show_Rider_Favs = function( RiderRec ) {
   document.write( '<div style="padding: 8px 0px 0px 0px;">' );
   document.write( '   <b>Favorite Discipline:&nbsp;&nbsp;</b>' +  RiderRec.FavDisc  );
   document.write( '</div>' );
   document.write( '<div style="padding: 8px 0px 0px 0px;">' );
   document.write( '    <b>Favorite Move(s):&nbsp;&nbsp;</b>' +  RiderRec.FavMove  );
   document.write( '</div>' );
   document.write( '<div style="padding: 8px 0px 0px 0px;">' );
   document.write( '   <b>Favorite Local Sailing Site:&nbsp;&nbsp;</b>' +  RiderRec.FavSite );
   document.write( '</div>' );
}

TeamObject.prototype.Show_Rider_About = function( RiderRec ) {
   if (RiderRec.About=="") { return; }
   if (RiderRec.About==null) { return; }
   document.write( '<div style="padding: 10px 0px 0px 0px;">');
   document.write( '   <b>About Me:&nbsp;&nbsp;</b>' );
   document.write(      RiderRec.About  );
   document.write( '</div>' );
}

var Team = new TeamObject();

function GetRiderParameter() {
   var ParamStr  = window.location.href.split("?");
   var params    = new Array();     
   
   if (ParamStr[1]) {
     var pairs= ParamStr[1].split("&")
     for (var i=0; i<pairs.length; i++) {
        nameVal = pairs[i].split('=');
        params[nameVal[0]] = nameVal[1];
     } 
     p1  = unescape(params["p1"]?params["p1"]:"");
     np1 = parseInt( p1, 10 ); 
     /* ShowParameter();  */
   }
} 

function ShowParameter() {
   if(p1)document.write("Parameters detected:");
   if(p1) document.write("<BR>P1="+p1);
}

      var aRiders = new Array(20);

      aRiders[01] = new RiderRec();
      aRiders[01].Id         = "1";
      aRiders[01].Name       = "Royn Bartholdi";
      aRiders[01].Pic        = "./pix/team/nl_team_royn.jpg";
      aRiders[01].Home       = "A Minnesotan transplated to Hood River, Oregon.&nbsp;&nbsp;But I am a wanderlust by heart.";
      aRiders[01].Profession = "Computer Consultant, Event Organizer";
      aRiders[01].FavDisc    = "Wavesailing for the flow, freestyle for the challenge, Gorge-Style for the thrill";
      aRiders[01].FavMove    = "Shove-It, Gu-Screws, and Flakas";
      aRiders[01].FavSite    = "Gnarloo";
      aRiders[01].Sponsors   = "The Loft, Starboard, Nolimitz, Dakine, Chinook, Anarchy Sunglasses";
      aRiders[01].email      = "royn@roynbartholdi.com";
      aRiders[01].url        = "www.roynbartholdi.com";
      aRiders[01].About      = ""; 

      aRiders[02] = new RiderRec();
      aRiders[02].Id         = "2";
      aRiders[02].Name       =  "Patrick Bergeron";
      aRiders[02].Pic        = "./pix/team/nl_team_bergeron.jpg";
      aRiders[02].Home       = "Haiku (Maui) for the past decade, "+
                               "but home away from 'home' is Sainte-Foy, Quebec.";
      aRiders[02].Profession = "Architect, wannabe stock trader, 'pro' hockey player and anything and everything in-between.";
      aRiders[02].FavDisc    = "Fun! ...whether it'd be in the waves (of course), "+
                               "trying them freestyle tricky tricks (pain!), or even "+
                               "heading at the first buoy next to my good sailing "+
                               "friends (rush) ...it's all good.";
      aRiders[02].FavMove    = "Back loops and jumps in general, the higher the better! "+
                               "Nothing beats heading at a 20-25 foot vertical wall "+
                               "of water on a maxed out 4.2 at Lower Kanaha!";
      aRiders[02].FavSite    = "The Wall (tough to beat the ambiance at the end of a "+
                               "long day of sailing there!), Lowers (for you can charge "+
                               "with our eyes closed ...almost), Ho'okipa (for it will "+
                               "always bring some humility in anyone), St-Jean Ile d'Orleans "+
                               "(homespot!) ...and a couple of secret spots in-between of course.";
      aRiders[02].Sponsors   = "Sailworks, RRD, DaKine, NoLimitz, HPL";
      aRiders[02].email      = "patsurf@hotmail.com";
      aRiders[02].url        = "";
      aRiders[02].About      = "I learned to sail on a Windsurfer One Design on a small lake called "+
                               "Turtle Lake in Quebec, Canada at the age of 16. After building a few "+
                               "boards in the basement and honing my skills locally, started going to "+
                               "go to the Gorge at 20. Winters were spend in school and playing "+
                               "hockey (next best thing after windsurfing!), spring was "+
                               "treeplanting season, then it was all sailing for a couple "+
                               "of months. Upon completing my university degree in "+
                               "Architecture, packed up and headed west. "+
                               "Spent a few years in the Gorge before I moved to Maui.<br><br>"+
                               "After many years, a few thousand sessions and many a locations "+
                               "later, I can say that my best memories are all those epic sessions "+
                               "with my close sailing buddies, Oli (Matte), Eric (Girard), "+
                               "Martin (Van Geenhoven), Glenn (Haslbeck), Dom, Mark, Fred and "+
                               "so many more! Though I have done many a contest over the "+
                               "years, they're only fun for they provide a social reason for "+
                               "passionate people to converge in a given location on a given "+
                               "day ...freesailing and discovering is where it's at for me, "+
                               "and it's always better to sail in crappy conditions with friends "+
                               "than in the best ones by yourself. Then again, having nothing "+
                               "but the best gear to do it makes it that much easier and I'd "+
                               "like to thank all those who've supported me through all those years!"; 

      aRiders[03] = new RiderRec();
      aRiders[03].Id         = "3";
      aRiders[03].Name       = "Mike Burns";
      aRiders[03].Pic        = "./pix/team/nl_team_burns.jpg";
      aRiders[03].Home       = "Port Jefferson Station, NY";
      aRiders[03].Profession = "Owner of video production company";
      aRiders[03].FavDisc    = "Freestyle of course";
      aRiders[03].FavMove    = "It always changes, right now the Ponch is lots of fun.";
      aRiders[03].FavSite    = "West Meadow Beach on the north shore of Long Island.  "+
                               "There is a big tidal change so in the same day you can "+
                               "sail glass flat water between the sandbars and 6 hours "+
                               "later have head high waves, all in the same session "+
                               "without going to a different beach.";
      aRiders[03].Sponsors   = "NoLimitz, Chinook, Ocean Air Sports.";
      aRiders[03].email      = "mewindsurf@aol.com";
      aRiders[03].url        = "";
      aRiders[03].About      = "My Birthday is May 9th, 1977.??To sum up my windsurfing "+
                               "life, my aunt and uncle taught me to sail on an "+
                               "origional windsurfer when I was 13, but I really "+
                               "got into it when I was able to drive and get to the "+
                               "beach on my own.??I started getting into racing and "+
                               "did very well winning a number of races around the "+
                               "Northeast.  In 1999 I competed in the first King "+
                               "of the Cape competition in Cape Cod. I sold my race "+
                               "gear the next day and it was all about freestyle "+
                               "from then on.  My best finish in a PWA event "+
                               "was 3rd place at King of the Cape in 2003.  "+
                               "It's not a PWA event anymore and I have won "+
                               "the event for the past 2 years.  I also love "+
                               "to get out on sunny, warm low wind days and "+
                               "break out the longboard for some oldschool "+
                               "freestyle.  I'm having fun every time I hit the water."; 

      aRiders[04] = new RiderRec();
      aRiders[04].Id         = "4";
      aRiders[04].Name       = "Nathan Corridon";
      aRiders[04].Pic        = "./pix/team/nl_team_corridon.jpg";
      aRiders[04].Home       = "Makawao, Maui but from England";
      aRiders[04].Profession = "Web Developer";
      aRiders[04].FavDisc    = "Waves / Freestyle";
      aRiders[04].FavMove    = "Aerial / Spock 540";
      aRiders[04].FavSite    = "Lower Kanaha can be great on the right day, "+
                               "Hookipa (but only from 11 to 12 before the "+
                               "crowds arrive!). Back in England my favorite "+
                               "spot is probably Ringstead, on the south coast, "+
                               "can be really good sometimes. Also because I have "+
                               "a lot of memories from sailing that area when younger.";
      aRiders[04].Sponsors   = "";
      aRiders[04].email      = "windsurf@mohala-web.co.uk";
      aRiders[04].url        = "";
      aRiders[04].About      = "I've windsurfed most of my life, starting from a young "+
                               "age although I rediscovered windsurfing a few years ago "+
                               "and since really got into it. I've been on Maui now for "+
                               "the last year or so but return to the UK to keep my "+
                               "business going and clients happy for a few months a year. "+
                               "I've recently got into freestyle which is great here "+
                               "in the flat summers. I hope to continue my business "+
                               "successfully which enables me to windsurfing so much"; 

      aRiders[05] = new RiderRec();
      aRiders[05].Id         = "5";
      aRiders[05].Name       = "Ascanio Dascanio";
      aRiders[05].Pic        = "./pix/team/nl_team_asconia.jpg";
      aRiders[05].Home       = "Ibiza (Spain - Balearic Islands)";
      aRiders[05].Profession = "I had a marine-engineering degree but spent the last " +
                               "few years doing what I love: Windsurfing and all kind off 'odd " +
                               "jobs' to finance my dream. For my future professional life, there " +
                               "are a lot of projects that I'm still trying to put together.";
      aRiders[05].FavDisc    = "Of course I love free-style, but during the "+
                               "last two years I spent a lot of time wave-sailing and by far I "+
                               "would say that my best memoris windsurfing are in the waves.";
      aRiders[05].FavMove    = "wave sailing :Goyter ; free-style: Shaka";
      aRiders[05].FavSite    = " had a great time where ever I've "+
                               "been sailing around the different world spots, but Maui and Cape "+
                               "Town get my top ranking favourite spots. I really love wave sailing.";
      aRiders[05].Sponsors   = "Nolimitz, Simmer, RRD, Dakine, Chinook";
      aRiders[05].email      = "Dascasurf@gmail.com";
      aRiders[05].url        = "";
      aRiders[05].About      = "My first steps on a windsurfing equipement: I was ten, I remember that "+
                               "old and huge equipment with a smile. Hooked right away I use to spend "+
                               "the whole summer on the big windsurfer. After that, for a long time I "+
"was a weekend sailor having an awefully hard time to progress and "+
"fullfeel that passion for sailing because I was studying and working "+
"to afford the school. As soon as I got my degree, I decided it was "+
"time to have fun and enjoy my biggest passion: windsurfing. "+
"For that I wanted to travel the world in search of fantastic sailing "+
"spots adapting my search to my budget and financing my adventures "+
"working whereever I would go. "+
"After a short trip to the Cannaries I met my first contact to go to "+
"the Gorge, and that's how everything started: working in summer 2000 "+
"with my friend Vlado in the house he was remodeling in Hood River: for "+
"the 1rst time, tones of sailing and little work to survive living in "+
"my dear Van 'Daizy' as everyone knows her in The Gorge. "+
"After that everything kept flowing: Baja, Morocco, France, Aruba, "+
"Brazil, Maui and finally South Africa this winter. "+
"My other main achievement as a windsurfer has been to be part of the "+
"Surf a Vela (spanish mag) team, seeing a lot of my trips as well as "+
"other tecnich articles published in the mags. After that I also so "+
"myself in some other mags in Italy, France, Canada and US. "+
"I kept coming back to the Gorge every summer being specially attached "+
"to that place where I did my first big windsurfing steps, had my first "+
"sponsorships and from where I have awesome memorise of the lifestyle "+
"and the local people, with who I wanna be thankfull for their constant "+
"support "+
"For all those achievements and hoppefully many other coming I wanna be "+
"specially thankfull to my sponsors and several really good Gprge "+
"friends for their constant support year after year helping me out "+
"realising my dream. I need to mention Vlado (1rst friend I met, your "+
"awesome), Steve and Cynthia, John and Sue in Hood River, Brian from "+
"Windance, Rutger my shaper teacher, Jason Diffin helped me out in Maui "+
"and Oregon... and many more.";

      aRiders[06] = new RiderRec();
      aRiders[06].Id         = "6";
      aRiders[06].Name       = "Paul Dieckman";
      aRiders[06].Pic        = "./pix/team/nl_team_dieckman.jpg";
      aRiders[06].Home       = " Lompoc, Ca";
      aRiders[06].Profession = "";
      aRiders[06].FavDisc    = "Left on south swell Store Reef";
      aRiders[06].FavMove    = "The Waterski";
      aRiders[06].FavSite    = "Jalama";
      aRiders[06].Sponsors   = "Nolimitz, Crowe sails, True Ames fins, Ezzy";
      aRiders[06].email      = "";
      aRiders[06].url        = "";
      aRiders[06].About      = "I learned to windsurf at Lake Lopez in "+
                               "1986 with a plastic Hi-Fly.  Started wave "+
                               "riding my local surfing spot Jalama with a "+
                               "Tiga 9ft 9in plastic board for another few "+
                               "years then got the platic Tiga 275. For "+
                               "10 years I was plastic man. I even won the "+
                               "Masters Heavy wind classic wave contest at "+
                               "Jalama on a Hi-Fly plastic board"; 

      aRiders[07] = new RiderRec();
      aRiders[07].Id         = "7";
      aRiders[07].Name       = "Mitch Gingrich";
      aRiders[07].Pic        = "./pix/team/nl_team_gingrich.jpg";
      aRiders[07].Home       = "The Dalles, OR";
      aRiders[07].Profession = "Philosopher, Political Analyst";
      aRiders[07].FavDisc    = "Gorge style";
      aRiders[07].FavMove    = "Back Loop, flat water goiter";
      aRiders[07].FavSite    = "Hatchery";
      aRiders[07].Sponsors   = "Hot Sails, DaKine, Nolimitz, Chinook, and others.";
      aRiders[07].email      = "mitchgingrich@hotmail.com";
      aRiders[07].url        = "";
      aRiders[07].About      = ""; 

      aRiders[08] = new RiderRec();
      aRiders[08].Id         = "8";
      aRiders[08].Name       = "Andy Gurtner";
      aRiders[08].Pic        = "./pix/team/nl_team_andyg.jpg";
      aRiders[08].Home       = "OR, but born and raised in good old Switzerland";
      aRiders[08].Profession = "Business owner, Windsurf Instructor, Ski and Mountain Guide, Sports Equipment Designer";
      aRiders[08].FavDisc    = "Wave Sailing in perfect side shore conditions.";
      aRiders[08].FavMove    = "Wave 360, Back Loop";
      aRiders[08].FavSite    = "Puerto Lajas Fuerteventura, Cape Sebastian, Three Mile Canyon";
      aRiders[08].Sponsors   = "Chiemsee, DaKine, Nolimitz, Quatro, The Loft, HPL";
      aRiders[08].email      = "info@swiss-swell.com";
      aRiders[08].url        = "swiss-swell.com";
      aRiders[08].About      = "After playing as a Junior in the Swiss ice hockey pro league, "+
                               "competing couple of years in the ski freestyle World Cup, "+
                               "Windsurfing became my professional source and lifestyle."; 

      aRiders[09] = new RiderRec();
      aRiders[09].Id         = "9";
      aRiders[09].Name       = "Hedy Gurtner";
      aRiders[09].Pic        = "./pix/team/nl_team_hedyg.jpg";
      aRiders[09].Home       = "Mosier OR, originally from Garmisch-Partenkirchen/Bavaria";
      aRiders[09].Profession = "Business owner, Web Designer, Horse Whisperer, Windsurf Instructor";
      aRiders[09].FavDisc    = "All I need is fun and speed...";
      aRiders[09].FavMove    = "Low wind freestyle moves or should I say free smile...";
      aRiders[09].FavSite    = "Flag Beach Fuerteventura, Dougs Beach";
      aRiders[09].Sponsors   = "Chiemsee, DaKine, Nolimitz, Quatro, The Loft";
      aRiders[09].email      = "webdesign@swiss-swell.com";
      aRiders[09].url        = "swiss-swell.com/webcreation";
      aRiders[09].About      = "After a longtime career as a ski freestyle pro and "+
                               "spending almost 12 month a year on 'frozen water', "+
                               "I felt the need to switch to the 'liquid water' "+
                               "and enjoy warmer temperatures."; 

      aRiders[10] = new RiderRec();
      aRiders[10].Id         = "10";
      aRiders[10].Name       = "Ingrid Larouche";
      aRiders[10].Pic        = "./pix/team/nl_team_larouche.jpg";
      aRiders[10].Home       = "From Quebec, but living in Hood River";
      aRiders[10].Profession = "Physical Therapist";
      aRiders[10].FavDisc    = " Freestyle";
      aRiders[10].FavMove    = "Shove It";
      aRiders[10].FavSite    = "Hatchery";
      aRiders[10].Sponsors   = "Hot Sails Maui, Nolimitz";
      aRiders[10].email      = "ingridlarouche@hotmail.com";
      aRiders[10].url        = "";
      aRiders[10].About      = "I love sailing and pushing myself to learn new tricks."; 

      aRiders[11] = new RiderRec();
      aRiders[11].Id         = "11";
      aRiders[11].Name       = "Keith McCulloch";
      aRiders[11].Pic        = "./pix/team/nl_team_mcculloch.jpg";
      aRiders[11].Home       = "Avon, NC";
      aRiders[11].Profession = "Webmaster";
      aRiders[11].FavDisc    = "Side off Wave Sailing";
      aRiders[11].FavMove    = "Air off the lip";
      aRiders[11].FavSite    = "The Cove";
      aRiders[11].Sponsors   = "";
      aRiders[11].email      = "cnckeith@tigercnc.com";
      aRiders[11].url        = "";
      aRiders[11].About      = "I started sailing on Pennsylvainia lakes in "+
                               "1984 with my Dad. After spending 5 years in "+
                               "college with little or no sailing I was off "+
                               "to the gorge for three summers in a row to hone "+
                               "my skills. A few trips to Maui thrown in there "+
                               "as well.? Now i've settled in here on Hatteras "+
                               "Island on the Outerbanks of North Carolina. "+
                               "During my first trip to the gorge, I was happy "+
                               "to discover Nolimitz Skinny Masts in 94' and have "+
                               "been using them ever since, its the perfect mast "+
                               "to handle the pounding surf conditions we get "+
                               "here in Hatteras."; 

      aRiders[12] = new RiderRec();
      aRiders[12].Id         = "12";
      aRiders[12].Name       = "Kevin Mcgillivray";
      aRiders[12].Pic        = "./pix/team/nl_team_mcgillivray.jpg";
      aRiders[12].Home       = "Santa Barbara, CA";
      aRiders[12].Profession = "Human Cannonball";
      aRiders[12].FavDisc    = " Waves!";
      aRiders[12].FavMove    = "Push Loop";
      aRiders[12].FavSite    = "Jalama....not so local: San Carlos";
      aRiders[12].Sponsors   = "Gaastra, Tabou, GSPORT Fins, and Utopia Optics.";
      aRiders[12].email      = "windcop@earthlink.net";
      aRiders[12].url        = "";
      aRiders[12].About      = "I started my windsurfing career with my "+
                               "friend getting me a job as a Club Med "+
                               "windsurfing insructor when I had never "+
                               "even tried windsurfing before.  "+
                               "Got through the telephone interview with "+
                               "some buzz words and two weeks later "+
                               "I was in Cancun!  Spent a year in the "+
                               "Caribbean (Cancun and the Dominican Republic) "+
                               "and then moved back to Santa Barbara.  "+
                               "I started sailing at Jalama and realized "+
                               "I couldn't afford to replace broken gear "+
                               "every week, so I had to learn to wavesail "+
                               "fast!!  I've got a bit of a travel bug, "+
                               "so windsurfing has taken me all over "+
                               "California, Oregon, Baja, Cancun, DR, The "+
                               "Turks and Caicos Islands, and Jericoacoara "+
                               "and Rio in Brazil.  Hmmm....where to next? "; 


      aRiders[13] = new RiderRec();
      aRiders[13].Id         = "13";
      aRiders[13].Name       = "Dana Miller";
      aRiders[13].Pic        = "./pix/team/nl_team_danamiller.jpg";
      aRiders[13].Home       = "Born on Honshu, the big island in Japan.  "+
                               "While I've had a Hatteras drivers license for "+
                               "nearly twenty years, I feel most at home in Pistol River OR";
      aRiders[13].Profession = "Carpenter, photographer, writer, performance coach, team rider.";
      aRiders[13].FavDisc    = "Wavesailing for sure";
      aRiders[13].FavMove    = "It's one of the sweetest things to plane off the beach "+
                               "and chuck a fat loop off the first wave or whitewater "+
                               "on the way out first run of the day.  Forward loops "+
                               "in heavy air are quite the powerful feeling as well.  "+
                               "Love the ballistic nature of them.  Funny, but I'll "+
                               "loop in wind I wouldn't dream of trying to flat jump in.  "+
                               "My favorite move has to be an aerial off the lip.  "+
                               "The best is to catch a sweet down the line wave ride "+
                               "with a big off the lip, land it, jibe clean with speed "+
                               "and head out into another fat forward on the way to the "+
                               "next ride.  Or riding several waves of a set by kicking "+
                               "out of the first and jibing into the next for a couple "+
                               "turns and kicking out again to catch another.  "+
                               "I'm totally into the whole combination thing for sure.  "+
                               "And a fully planning jibe always makes me smile.   Oh yeah";
      aRiders[13].FavSite    = "On Hatteras, it's the cove on SE and E.  "+
                               "On NE, it's the NE point of Ocracoke.  "+
                               "Pea Island on NW.  Ego Beach on SW.  In Oregon, "+
                               "the Cape Sebastian and Face rock.";
      aRiders[13].Sponsors   = "NoLimitz, Simmer, O'Neil, Chinook, DaKine, Hatteras Island Surf Shop, & Avon Sail House.";
      aRiders[13].email      = "kazedoka@mac.com";
      aRiders[13].url        = "";
      aRiders[13].About      = "Man I love the new silver masts and have never felt more "+
                               "dialed in on my gear.  It’s a sweet feeling and to be "+
                               "going for it so hard and be injury free this year has "+
                               "been such a gift.  I have to think this is going to "+
                               "be such an amazing year too.  I’m working on my first "+
                               "film, should be breaking out some product to establish my "+
                               "production company and am totally committed to going live "+
                               "with a cyberzine this year.  And I’ve been visualizing "+
                               "some freestyle stuff to bring into my wave attack.  "+
                               "Been skatesailing heavily to x-train and to work on "+
                               "sail handling -- pushing Flakas, Spocks, tail-method "+
                               "360s and the like.  On the water I'm getting much better "+
                               "air off the lip and landing out front more.  Been tweaking "+
                               "my forwards by experimenting with the rotations and doing "+
                               "delays.  Been trying them off the lip as well.  "+
                               "Yeah, pure stoke.  I’m turning fifty this year and going "+
                               "bigger than ever.  Been doing clinics, shooting on the "+
                               "water more and generally spreading the stoke at every "+
                               "opportunity.   So much respect and gratitude for everybody "+
                               "out there that lent me gear, said good things about me, "+
                               "shared meals, shot photographs, published my stuff, gave "+
                               "me rides back upwind, or even smiled in my general direction. "; 

      aRiders[14] = new RiderRec();
      aRiders[14].Id         = "14";
      aRiders[14].Name       = "Margaret Nold";
      aRiders[14].Pic        = "./pix/team/nl_team_nold.jpg";
      aRiders[14].Home       = "Hatteras, Gorge, homeless...";
      aRiders[14].Profession = "Windsurf shop owner, writer, tri-lingual (french, "+
                               "english, gibberish) gear adivsor";
      aRiders[14].FavDisc    = "Undisciplined swell riding (and I don't know which "+
                               "side is starboard w/o having to think about it...)";
      aRiders[14].FavMove    = "fast splats (tacks?)";
      aRiders[14].FavSite    = "the Wall; sunset @ Pamlico Sound.";
      aRiders[14].Sponsors   = "Simmer Sails, Quatro boards, Chinook Sailing Products, "+
                               "NoLimitz (of course), True Ames fins, Promotion wetsuits";
      aRiders[14].email      = "avonsailhouse@earthlink.net";
      aRiders[14].url        = "";
      aRiders[14].About      = "I was raised in Colorado ski country, switched from skis and "+
                               "white winters to sand and windsurfing.  What started as a "+
                               "sail repair shop at Cape Hatteras, became a windsurfing "+
                               "boutique, the Avon Sail House, which I own and run with "+
                               "partner, Olaf Podehl.? I feel blessed to be involved in "+
                               "such an amazing sport as windsurfing with all the nutbars "+
                               "and totally cool folks it attracts.  Namaste."; 

      aRiders[15] = new RiderRec();
      aRiders[15].Id         = "15";
      aRiders[15].Name       = "Paulina Pease";
      aRiders[15].Pic        = "./pix/team/nl_team_pease.jpg";
      aRiders[15].Home       = "Haiku, Maui, Hawaii";
      aRiders[15].Profession = "College Student";
      aRiders[15].FavDisc    = "Wave Sailing";
      aRiders[15].FavMove    = "Wave riding in general";
      aRiders[15].FavSite    = "Ho’okipa";
      aRiders[15].Sponsors   = "Kaenon Polarized, Da-Kine International, "+
                               "Pompei Beach Bikinis by Elena Pompei, Maui Sails, "+
                               "Maui Fin Company, Mistral Boards, and Nolimitz.";

      aRiders[15].email      = "paulina_the_windsurfer@hotmail.com";
      aRiders[15].url        = "";
      aRiders[15].About      = "I grew up on the island of Maui and learned how to windsurf "+
                               "when I was 13 years old.  From the moment that I first up "+
                               "hauled, I knew that sailing was for me.  After I became "+
                               "good enough to sail around, my dad, Geof, became my windsurfing "+
                               "coach.  Over the years I have won several titles varying from "+
                               "slalom, speed sailing, and wave sailing.  Recently I also "+
                               "joined the PWA and ISA. In my spare time I like to go "+
                               "swimming and I also do some modeling"; 

      aRiders[16] = new RiderRec();
      aRiders[16].Id         = "16";
      aRiders[16].Name       = "Olaf Podehl";
      aRiders[16].Pic        = "./pix/team/nl_team_olaf.jpg";
      aRiders[16].Home       = "Depends on what time of year you ask, I have a migratory route.";
      aRiders[16].Profession = "Sail Alterations Specialist, windsurf gear explainer, traveler.";
      aRiders[16].FavDisc    = "Boardsailing across bodies of water using the wind to clear the mind.";
      aRiders[16].FavMove    = "Sending spray, making it over the last wave of the set, soaring with "+
                               " 'Iwa hunting cresting waves.";
      aRiders[16].FavSite    = "Depends on what time of year you ask, I have a migratory route.";
      aRiders[16].Sponsors   = "Avon Sail House, Simmer Sails, Quatro Int., Chinook, Nolimitz, "+
                               "True Ames Fins, Promotion Wetsuits... hardwork";
      aRiders[16].email      = "olafp@earthlink.net";
      aRiders[16].url        = "";
      aRiders[16].About      = "I have had the honor of being educated by many people: my parents "+
                               "Cordula and Martin, Norma Walmsley and Joan Garnett, "+
                               "my Avon Sail House partner Margaret, the Bellaar-Spruyt clan, "+
                               "Jeep Picher, my highschool physics teacher (wave tank experiments), "+
                               "my wing designer Jason Diffin, and the various Windians that I "+
                               "have shared waves and meals with. Still searching for that best day."; 

      aRiders[17] = new RiderRec();
      aRiders[17].Id         = "17";
      aRiders[17].Name       =  "Alex Poore";
      aRiders[17].Pic        = "./pix/team/nl_team_apoore.jpg";
      aRiders[17].Home       = "Santa Cruz, C.A.";
      aRiders[17].Profession = "Student, Windsurfer";
      aRiders[17].FavDisc    = "Freestyle";
      aRiders[17].FavMove    = "Back loop, Spock 540, Front Loop, Shove it and the Shaka";
      aRiders[17].FavSite    = "Swell City, The Wall, 3 Mile Canyon";
      aRiders[17].Sponsors   = "Nolimitz, Sailworks, Dakine and Goya";
      aRiders[17].email      = "tpoore@ucsc.edu";
      aRiders[17].url        = "";
      aRiders[17].About      = "I am 20 years old and currently a student at the "+
                               "University of California, Santa Cruz. "+
                               "I started sailing at the young age of seven, thanks to my wonderful family."+ 
                               "As far back as I can remember I aspired to sail."+ 
                               "I was relentless as a kid to learn and it paid off, I placed highly in the "+
                               "two junior freestyle Gorge Game events that I entered."+
                               "Sailing is an amazing sport that I absolutely love and hope to see"+ 
                               "others enjoy!!!!! See you on the water.";
                               
      aRiders[18] = new RiderRec();
      aRiders[18].Id         = "18";
      aRiders[18].Name       = "Jeff Toth";
      aRiders[18].Pic        = "./pix/team/nl_team_toth.jpg";
      aRiders[18].Home       = "Carlsbad CA";
      aRiders[18].Profession = "Catalog Printer (Check out all of "+
                               "the great looking Liquid Force marketing collateral!)";
      aRiders[18].FavDisc    = "Waves";
      aRiders[18].FavMove    = "Hanging on for dear life and not getting hurt";
      aRiders[18].FavSite    = "Jalama";
      aRiders[18].Sponsors   = "";
      aRiders[18].email      = "jtoth@plitho.com";
      aRiders[18].url        = "";
      aRiders[18].About      = "A few good years on Maui, 4 great years in "+
                               "Santa Barbara, and now a slave to 'The Man' in San Diego. "+
                               "Still like to make the drive up to Jalama when I can along "+
                               "with the occasional San Carlos adventure." +
                               "Now I spend a lot of time working with the creative teams "+
                               "of companies like Burton, Channel Islands, Gravis, and Liquid "+
                               "Force printing their brochures, catalogs, ECT. Once I can find "+
                               "a waterproof Treo, my set-up will be perfect.";

      aRiders[19] = new RiderRec();
      aRiders[19].Id         = "19";
      aRiders[19].Name       =  "Temira Wagonfeld";
      aRiders[19].Pic        = "./pix/team/nl_team_2mirror.jpg";
      aRiders[19].Home       = "Hood River, Oregon";
      aRiders[19].Profession = "Small Business Owner, Freelance Writer";
      aRiders[19].FavDisc    = "High-wind freestyle";
      aRiders[19].FavMove    = "Push Loop";
      aRiders[19].FavSite    = "Cheap Beach";
      aRiders[19].Sponsors   = "Nolimitz, Hot Sails Maui, Fanatic USA, Da Kine, "+
                               "Gath Helmets, Eversummer Gardens, Wet Women International, iWindsurf.com";
      aRiders[19].email      = "twomirrors@gmail.com";
      aRiders[19].url        = "";
      aRiders[19].About      = "";


/*****************************************************/
/**************   End of Nolimitz Team  **************/
/*****************************************************/
