<!--
      function popup()
      {
      	  // open the popup window
	  var popup = window.open("", "Receipt", 'width=600,height=400,scrollbars=yes');
	  	  
	  popup.document.open();
	  popup.document.write('<html><head><title>Cheque Advice Note</title></head>');
	  popup.document.write('<body>');
	  popup.document.write('<h2>Cheque Advice Note</h2>');
	  
	  popup.document.write('<p>Please send this sheet with your cheque made payable to DW Organisation Ltd to the address below:<br>');
	  popup.document.write('Competition Secretary<br>');
	  popup.document.write('Devizes to Westminster Organisation<br>');
	  popup.document.write('10 Sundew Close<br>');
	  popup.document.write('Claines<br>');
	  popup.document.write('Worcester<br>');
	  popup.document.write('WR3 7LF</p>');
	  
	  popup.document.write('<form>');	  
	  popup.document.write('<input type="button" value="Print this page" onClick="window.print()"/>');	  
	  popup.document.write('</form>');	  
	  
	  popup.document.write('<h2>Devizes to Westminster Entry Details</h2>');
	  
	  var today=new Date()
	  popup.document.write('<p>Entry date: ' + today.getDate() + '/' + (today.getMonth() +1) + '/' + (today.getFullYear()) + '</p>');
	  
	  popup.document.write('<table border="1" cellspacing="0">');

	  // display all the details entered on the form  
          comboClass = document.getElementById("Class");
          comboFee = document.getElementById("Fee");

	  popup.document.write('<tr><td>' + comboClass.name + '</td><td>' + comboClass.value + '</td></tr>');
	  popup.document.write('<tr><td>' + comboFee.name + '</td><td>' + comboFee.value + '</td></tr>');
	  
	  popup.document.write('</table><br /><table border="1" cellspacing="0">');
	  
          comboTitle1 = document.getElementById("Title");
          txtFirstname1 = document.getElementById("Firstname");
          txtSurname1 = document.getElementById("Surname");
          txtDay1 = document.getElementById("Day");
          txtMonth1 = document.getElementById("Month");
          txtYear1 = document.getElementById("Year");
          txtGender1 = document.getElementById("Gender");
          txtAddrLine1_1 = document.getElementById("AddrLine1");
          txtAddrLine2_1 = document.getElementById("AddrLine2");
          txtTown1 = document.getElementById("Town");
          txtCounty1 = document.getElementById("County");
          txtPostcode1 = document.getElementById("Postcode");
          txtCountry1 = document.getElementById("Country");
          txtHomeTel1 = document.getElementById("HomeTel");
          txtWorkTel1 = document.getElementById("WorkTel");
          txtEmail1 = document.getElementById("Email");
	  
	  if (comboTitle1.value!="") popup.document.write('<tr><td>' + comboTitle1.name + '</td><td>' + comboTitle1.value + '</td></tr>');
	  if (txtFirstname1.value!="") popup.document.write('<tr><td>' + txtFirstname1.name + '</td><td>' + txtFirstname1.value + '</td></tr>');
	  if (txtSurname1.value!="") popup.document.write('<tr><td>' + txtSurname1.name + '</td><td>' + txtSurname1.value + '</td></tr>');
	  if (txtDay1.value!="") popup.document.write('<tr><td>' + txtDay1.name + '</td><td>' + txtDay1.value + '</td></tr>');
	  if (txtMonth1.value!="") popup.document.write('<tr><td>' + txtMonth1.name + '</td><td>' + txtMonth1.value + '</td></tr>');
	  if (txtYear1.value!="") popup.document.write('<tr><td>' + txtYear1.name + '</td><td>' + txtYear1.value + '</td></tr>');
	  if (txtGender1.value!="") popup.document.write('<tr><td>' + txtGender1.name + '</td><td>' + txtGender1.value + '</td></tr>');
	  if (txtAddrLine1_1.value!="") popup.document.write('<tr><td>' + txtAddrLine1_1.name + '</td><td>' + txtAddrLine1_1.value + '</td></tr>');
	  if (txtAddrLine2_1.value!="") popup.document.write('<tr><td>' + txtAddrLine2_1.name + '</td><td>' + txtAddrLine2_1.value + '</td></tr>');
	  if (txtTown1.value!="") popup.document.write('<tr><td>' + txtTown1.name + '</td><td>' + txtTown1.value + '</td></tr>');
	  if (txtCounty1.value!="") popup.document.write('<tr><td>' + txtCounty1.name + '</td><td>' + txtCounty1.value + '</td></tr>');
	  if (txtPostcode1.value!="") popup.document.write('<tr><td>' + txtPostcode1.name + '</td><td>' + txtPostcode1.value + '</td></tr>');
	  if (txtCountry1.value!="") popup.document.write('<tr><td>' + txtCountry1.name + '</td><td>' + txtCountry1.value + '</td></tr>');
	  if (txtHomeTel1.value!="") popup.document.write('<tr><td>' + txtHomeTel1.name + '</td><td>' + txtHomeTel1.value + '</td></tr>');
	  if (txtWorkTel1.value!="") popup.document.write('<tr><td>' + txtWorkTel1.name + '</td><td>' + txtWorkTel1.value + '</td></tr>');
	  if (txtEmail1.value!="") popup.document.write('<tr><td>' + txtEmail1.name + '</td><td>' + txtEmail1.value + '</td></tr>');

	  popup.document.write('</table>');
	 
          comboValue = comboClass.options[comboClass.selectedIndex].value;
          if (comboValue != "SS")
          {
          	  popup.document.write('<br /><table border="1" cellspacing="0">');

		  comboTitle2 = document.getElementById("Title2");
		  txtFirstname2 = document.getElementById("Firstname2");
		  txtSurname2 = document.getElementById("Surname2");
		  txtDay2 = document.getElementById("Day2");
		  txtMonth2 = document.getElementById("Month2");
		  txtYear2 = document.getElementById("Year2");
		  txtGender2 = document.getElementById("Gender2");
		  txtAddrLine1_2 = document.getElementById("AddrLine1_2");
		  txtAddrLine2_2 = document.getElementById("AddrLine2_2");
		  txtTown2 = document.getElementById("Town2");
		  txtCounty2 = document.getElementById("County2");
		  txtPostcode2 = document.getElementById("Postcode2");
		  txtCountry2 = document.getElementById("Country2");
		  txtHomeTel2 = document.getElementById("HomeTel2");
		  txtWorkTel2 = document.getElementById("WorkTel2");
		  txtEmail2 = document.getElementById("Email2");

		  if (comboTitle2.value!="") popup.document.write('<tr><td>' + comboTitle2.name + '</td><td>' + comboTitle2.value + '</td></tr>');
		  if (txtFirstname2.value!="") popup.document.write('<tr><td>' + txtFirstname2.name + '</td><td>' + txtFirstname2.value + '</td></tr>');
		  if (txtSurname2.value!="") popup.document.write('<tr><td>' + txtSurname2.name + '</td><td>' + txtSurname2.value + '</td></tr>');
		  if (txtDay2.value!="") popup.document.write('<tr><td>' + txtDay2.name + '</td><td>' + txtDay2.value + '</td></tr>');
		  if (txtMonth2.value!="") popup.document.write('<tr><td>' + txtMonth2.name + '</td><td>' + txtMonth2.value + '</td></tr>');
		  if (txtYear2.value!="") popup.document.write('<tr><td>' + txtYear2.name + '</td><td>' + txtYear2.value + '</td></tr>');
		  if (txtGender2.value!="") popup.document.write('<tr><td>' + txtGender2.name + '</td><td>' + txtGender2.value + '</td></tr>');
		  if (txtAddrLine1_2.value!="") popup.document.write('<tr><td>' + txtAddrLine1_2.name + '</td><td>' + txtAddrLine1_2.value + '</td></tr>');
		  if (txtAddrLine2_2.value!="") popup.document.write('<tr><td>' + txtAddrLine2_2.name + '</td><td>' + txtAddrLine2_2.value + '</td></tr>');
		  if (txtTown2.value!="") popup.document.write('<tr><td>' + txtTown2.name + '</td><td>' + txtTown2.value + '</td></tr>');
		  if (txtCounty2.value!="") popup.document.write('<tr><td>' + txtCounty2.name + '</td><td>' + txtCounty2.value + '</td></tr>');
		  if (txtPostcode2.value!="") popup.document.write('<tr><td>' + txtPostcode2.name + '</td><td>' + txtPostcode2.value + '</td></tr>');
		  if (txtCountry2.value!="") popup.document.write('<tr><td>' + txtCountry2.name + '</td><td>' + txtCountry2.value + '</td></tr>');
		  if (txtHomeTel2.value!="") popup.document.write('<tr><td>' + txtHomeTel2.name + '</td><td>' + txtHomeTel2.value + '</td></tr>');
		  if (txtWorkTel2.value!="") popup.document.write('<tr><td>' + txtWorkTel2.name + '</td><td>' + txtWorkTel2.value + '</td></tr>');
		  if (txtEmail2.value!="") popup.document.write('<tr><td>' + txtEmail2.name + '</td><td>' + txtEmail2.value + '</td></tr>');

	  }


	  popup.document.write('</table>');
	  popup.document.write('</body>');
	  popup.document.close();
	  popup.focus();

	  return false;
      }

      function enableOther(comboOther, txtOther) 
      {      	  
      	  comboValue = comboOther.options[comboOther.selectedIndex].value;
      	  
      	  if(comboValue=="Other")
      	  {
      	      txtOther.disabled = null;
      	      txtOther.focus();
      	  }
      	  else
      	  {
      	      txtOther.disabled = "disabled";
      	  }      	  
      }
      
      function selectFee() {
        comboFee = document.getElementById("Fee");
        comboClass = document.getElementById("Class");
        comboFee.selectedIndex = comboClass.selectedIndex;      
      }

      function disableColumn2() {
        comboClass = document.getElementById("Class");        
        comboTitle2 = document.getElementById("Title2");
        txtSurname2 = document.getElementById("Surname2");
        txtFirstname2 = document.getElementById("Firstname2");
        txtDay2 = document.getElementById("Day2");
        txtMonth2 = document.getElementById("Month2");
        txtYear2 = document.getElementById("Year2");
	comboNationality2 = document.getElementById("Nationality2");
        txtNationalityOther2 = document.getElementById("NationalityOther2");
        txtSpecialVisit2 = document.getElementById("SpecialVisit2");
        txtGender2 = document.getElementById("Gender2");
        txtAddrLine1_2 = document.getElementById("AddrLine1_2");
        txtAddrLine2_2 = document.getElementById("AddrLine2_2");
        txtTown2 = document.getElementById("Town2");
        txtCounty2 = document.getElementById("County2");
        txtPostcode2 = document.getElementById("Postcode2");
        txtCountry2 = document.getElementById("Country2");
        txtHomeTel2 = document.getElementById("HomeTel2");
        txtWorkTel2 = document.getElementById("WorkTel2");
        txtEmail2 = document.getElementById("Email2");
        txtPager2 = document.getElementById("Pager2");
        txtLastDW2 = document.getElementById("LastDW2");
        txtLast40Month2 = document.getElementById("Last40Month2");
        txtLast40Year2 = document.getElementById("Last40Year2");
	comboCanoeClub2 = document.getElementById("CanoeClub2");
	txtCanoeClubOther2 = document.getElementById("CanoeClubOther2");
	txtPolice2 = document.getElementById("Police2");
	comboEdInst2 = document.getElementById("EdInst2");
	txtEdInstOther2 = document.getElementById("EdInstOther2");
	txtUniversity2 = document.getElementById("University2");
	txtCCF2 = document.getElementById("CCF2");
	txtScoutGroup2 = document.getElementById("ScoutGroup2");
	txtSeaCadet2 = document.getElementById("SeaCadet2");
	txtMilitary2 = document.getElementById("Military2");
	txtMilitaryEstA2 = document.getElementById("MilitaryEstA2");
	txtMilitaryEstB2 = document.getElementById("MilitaryEstB2");
	txtMilitaryEstC2 = document.getElementById("MilitaryEstC2");
	txtMilitaryEstD2 = document.getElementById("MilitaryEstD2");
	txtMilitaryPosA2 = document.getElementById("MilitaryPosA2");
	txtMilitaryPosB2 = document.getElementById("MilitaryPosB2");
	txtMilitaryPosC2 = document.getElementById("MilitaryPosC2");
	txtMilitaryPosD2 = document.getElementById("MilitaryPosD2");
	txtBCU2 = document.getElementById("BCU2");
	txtMember2 = document.getElementById("Member2");
	
        comboValue = comboClass.options[comboClass.selectedIndex].value;
        if (comboValue == "SS")
        {
          comboTitle2.disabled="disabled";
          txtSurname2.disabled="disabled";
          txtFirstname2.disabled="disabled";
          txtDay2.disabled="disabled";
          txtMonth2.disabled="disabled";
          txtYear2.disabled="disabled";
          comboNationality2.disabled="disabled";
          txtNationalityOther2.disabled="disabled";
          txtSpecialVisit2.disabled="disabled";
          txtGender2.disabled="disabled";
          txtAddrLine1_2.disabled="disabled";
          txtAddrLine2_2.disabled="disabled";
          txtTown2.disabled="disabled";
          txtCounty2.disabled="disabled";
          txtPostcode2.disabled="disabled";
          txtCountry2.disabled="disabled";
          txtHomeTel2.disabled="disabled";
          txtWorkTel2.disabled="disabled";
          txtEmail2.disabled="disabled";
          txtPager2.disabled="disabled";
          txtLastDW2.disabled="disabled";
          txtLast40Month2.disabled="disabled";
          txtLast40Year2.disabled="disabled";
          comboCanoeClub2.disabled="disabled";
          txtCanoeClubOther2.disabled="disabled";
          txtPolice2.disabled="disabled";
          comboEdInst2.disabled="disabled";          
          txtEdInstOther2.disabled="disabled";
          txtUniversity2.disabled="disabled";
          txtScoutGroup2.disabled="disabled";
          txtSeaCadet2.disabled="disabled";
          txtMilitary2.disabled="disabled";
          txtMilitaryEstA2.disabled="disabled";
          txtMilitaryEstB2.disabled="disabled";
          txtMilitaryEstC2.disabled="disabled";
          txtMilitaryEstD2.disabled="disabled";
          txtMilitaryPosA2.disabled="disabled";
          txtMilitaryPosB2.disabled="disabled";
          txtMilitaryPosC2.disabled="disabled";
          txtMilitaryPosD2.disabled="disabled";
          txtCCF2.disabled="disabled";
          txtBCU2.disabled="disabled";
          txtMember2.disabled="disabled";
        }
        else
        {
          comboTitle2.disabled=null;
          txtSurname2.disabled=null;
          txtFirstname2.disabled=null;
          txtDay2.disabled=null;
          txtMonth2.disabled=null;
          txtYear2.disabled=null;
          comboNationality2.disabled=null;
          if(comboNationality2.value=="Other") txtNationalityOther2.disabled=null;
          txtSpecialVisit2.disabled=null;
          txtGender2.disabled=null;
          txtAddrLine1_2.disabled=null;
          txtAddrLine2_2.disabled=null;
          txtTown2.disabled=null;
          txtCounty2.disabled=null;
          txtPostcode2.disabled=null;
          txtCountry2.disabled=null;
          txtHomeTel2.disabled=null;
          txtWorkTel2.disabled=null;
          txtEmail2.disabled=null;
          txtPager2.disabled=null;
	  txtLastDW2.disabled=null;
          txtLast40Month2.disabled=null;
          txtLast40Year2.disabled=null;
	  comboCanoeClub2.disabled=null;
	  if(comboCanoeClub2.value=="Other") txtCanoeClubOther2.disabled=null;
          txtPolice2.disabled=null;
          comboEdInst2.disabled=null;          
          if(comboEdInst2.value=="Other") txtEdInstOther2.disabled=null;
          txtUniversity2.disabled=null;
          txtCCF2.disabled=null;
          txtScoutGroup2.disabled=null;
          txtSeaCadet2.disabled=null;
          txtMilitary2.disabled=null;
          txtMilitaryEstA2.disabled=null;
          txtMilitaryEstB2.disabled=null;
          txtMilitaryEstC2.disabled=null;
          txtMilitaryEstD2.disabled=null;
          txtMilitaryPosA2.disabled=null;
          txtMilitaryPosB2.disabled=null;
          txtMilitaryPosC2.disabled=null;
          txtMilitaryPosD2.disabled=null;
          txtBCU2.disabled=null;
          txtMember2.disabled=null;

        }
      }

      function PopulateComboWithMonths(combo, blank)
      {
          if(blank==true)
          {
	      combo[0].text = ""
	      combo[0].value = ""

	      combo[1].text = "Jan";
	      combo[2].text = "Feb";
	      combo[3].text = "Mar";
	      combo[4].text = "Apr";
	      combo[5].text = "May";
	      combo[6].text = "Jun";
	      combo[7].text = "Jul";
	      combo[8].text = "Aug";
	      combo[9].text = "Sep";
	      combo[10].text = "Oct";
	      combo[11].text = "Nov";
	      combo[12].text = "Dec";

	      combo[1].value = "01";
	      combo[2].value = "02";
	      combo[3].value = "03";
	      combo[4].value = "04";
	      combo[5].value = "05";
	      combo[6].value = "06";
	      combo[7].value = "07";
	      combo[8].value = "08";
	      combo[9].value = "09";
	      combo[10].value = "10";
	      combo[11].value = "11";
	      combo[12].value = "12";
	   }
	   else
	   {   
	      combo[0].text = "Jan";
	      combo[1].text = "Feb";
	      combo[2].text = "Mar";
	      combo[3].text = "Apr";
	      combo[4].text = "May";
	      combo[5].text = "Jun";
	      combo[6].text = "Jul";
	      combo[7].text = "Aug";
	      combo[8].text = "Sep";
	      combo[9].text = "Oct";
	      combo[10].text = "Nov";
	      combo[11].text = "Dec";

	      combo[0].value = "01";
	      combo[1].value = "02";
	      combo[2].value = "03";
	      combo[3].value = "04";
	      combo[4].value = "05";
	      combo[5].value = "06";
	      combo[6].value = "07";
	      combo[7].value = "08";
	      combo[8].value = "09";
	      combo[9].value = "10";
	      combo[10].value = "11";
	      combo[11].value = "12";
	   }

	   return true;
      }

      function PopulateComboWithDays(combo)
	  {
	      combo[0].text = "01";
	      combo[1].text = "02";
	      combo[2].text = "03";
	      combo[3].text = "04";
	      combo[4].text = "05";
	      combo[5].text = "06";
	      combo[6].text = "07";
	      combo[7].text = "08";
	      combo[8].text = "09";

	      combo[0].value = "01";
	      combo[1].value = "02";
	      combo[2].value = "03";
	      combo[3].value = "04";
	      combo[4].value = "05";
	      combo[5].value = "06";
	      combo[6].value = "07";
	      combo[7].value = "08";
	      combo[8].value = "09";

	      var i;
  	      for (i = 9; i < 31; i++)
	      {
		 combo[i].text = i+1;
		 combo[i].value = i+1;
	      }

	      combo[0].selected=true;

	      return true;
	  }

	  function PopulateComboWithDWYears(combo, blank)
	  {
	      var iStart;
	      var iEnd;
	      
	      if(blank==true)
	      {   
	          combo[0].text = ""
	          combo[0].value = ""
	          
	          iStart= 1;
	          iEnd = 61;

	      }
	      else
	      {
	      	  iStart = 0;
	      	  iEnd = 60;
	      }
	       
	      var d = new Date();
	      var year = d.getFullYear();
	      var i;
	      var iyear = parseInt(year);

	      for(i=iStart; i<iEnd; ++i)
	      {
	          combo[i].text = iyear;
	          combo[i].value = iyear;

	          iyear = iyear-1;
	      }
  
	       return true;
	  }

	  function PopulateComboWithYears(combo, blank)
	  {
	      var iStart;
	      var iEnd;
	      
	      if(blank==true)
	      {   
	          combo[0].text = ""
	          combo[0].value = ""
	          
	          iStart= 1;
	          iEnd = 101;

	      }
	      else
	      {
	      	  iStart = 0;
	      	  iEnd = 100;
	      }
	       
	      var d = new Date();
	      var year = d.getFullYear();
	      var i;
	      var iyear = parseInt(year);

	      for(i=iStart; i<iEnd; ++i)
	      {
	          combo[i].text = iyear;
	          combo[i].value = iyear;

	          iyear = iyear-1;
	      }
  
	       return true;
	  }

	  function CheckDay(comboMonth, comboDay)
	  {

	  	if(comboMonth.value=="Feb" && comboDay.value>29)
	  	{
	  		comboDay.value=28;
	  	}
	  	else if((comboMonth.value=="Sep" || comboMonth.value=="Apr" || comboMonth.value=="Jun" || comboMonth.value=="Nov") && comboDay.value>30)
	  	{
	  		comboDay.value=30;
	  	}
	  }

	  function CheckEntry()
	  {
	  	var iAge1;
	  	var iAge2;

	  	iAge1=0;
	  	iAge2=0;

		if(document.EntryForm.Class.value=="")
		{
			alert("Please select a Class to enter")
			return false;
		}
	  	if(IsEmpty(document.EntryForm.Model))
	  	{
	  		alert("Please fill in boat model");
	  		return false;
	  	}

		if((document.EntryForm.Title.value=="Mr" || document.EntryForm.Title.value=="Sir") && document.EntryForm.Gender.value!="Male")
		{
			alert("Inconsistent Title and Gender for Paddler1");
			return false;
		}
		if((document.EntryForm.Title.value=="Mrs" || document.EntryForm.Title.value=="Miss" || document.EntryForm.Title.value=="Ms") && document.EntryForm.Gender.value!="Female")
		{
			alert("Inconsistent Title and Gender for Paddler1");
			return false;
		}
	  	if(IsEmpty(document.EntryForm.Surname))
	  	{
	  		alert("Please fill in Surname for Paddler1");
	  		return false;
	  	}
		if(IsEmpty(document.EntryForm.Firstname))
		{
			alert("Please fill in Firstname for Paddler1")
			return false;
		}
		if(document.EntryForm.Nationality.value=="Other" && IsEmpty(document.EntryForm.NationalityOther))
		{
			alert("Please fill in Other Nationality for Paddler1")
			return false;
		}
		if(IsEmpty(document.EntryForm.AddrLine1))
		{
			alert("Please fill in Address Line 1 for Paddler1")
			return false;
		}
		if(IsEmpty(document.EntryForm.Postcode))
		{
			alert("Please fill in Postcode for Paddler1")
			return false;
		}
		if(IsEmpty(document.EntryForm.Email))
		{
			alert("Please fill in email address for Paddler1");
			return false;
		}
		if(document.EntryForm.Email.value.indexOf("@")==-1)
		{
			alert("Please enter a correct email address for Paddler1");
			return false;
		}
		if(document.EntryForm.CanoeClub.value=="Other" && IsEmpty(document.EntryForm.CanoeClubOther))
		{
			alert("Please fill in Other Canoe Club for Paddler1")
			return false;
		}
		if(document.EntryForm.University.checked==true)
		{
			if(IsEmpty(document.EntryForm.EdInst))
			{
				alert("Please enter University name in Eductional Institution for Paddler1");
				return false;
			}
			if(document.EntryForm.EdInst.value=="Other" && IsEmpty(document.EntryForm.EdInstOther))
			{
				alert("Please fill in Other University for Paddler1")
				return false;
			}
		}
		if(document.EntryForm.CCF.checked==true)
		{
			if(IsEmpty(document.EntryForm.EdInst))
			{
				alert("Please enter School name in Eductional Institution for Paddler1");
				return false;
			}
			if(document.EntryForm.EdInst.value=="Other" && IsEmpty(document.EntryForm.EdInstOther))
			{
				alert("Please fill in Other CCF for Paddler1")
				return false;
			}
		}
		if(document.EntryForm.EdInst.value=="Other" && IsEmpty(document.EntryForm.EdInstOther))
		{
			alert("Please fill in Other Educational Inst. for Paddler1")
			return false;
		}
		if(CheckMilitaryDetails(document.EntryForm.Military, document.EntryForm.MilitaryEstA.checked,document.EntryForm.MilitaryEstB.checked,document.EntryForm.MilitaryEstC.checked,document.EntryForm.MilitaryPosA.checked,document.EntryForm.MilitaryPosB.checked,document.EntryForm.MilitaryPosC.checked,true)==false)
		{
			return false;
		}
		
		if(document.EntryForm.LastDW.value!="" && document.EntryForm.LastDW.value < document.EntryForm.Year.value)
		{
			alert("Paddler1 cannot have paddled the DW before they were born!");
			return false;
		}
		
		iAge1 = AgeOn1stJanuary(document.EntryForm.Day.value, document.EntryForm.Month.value, document.EntryForm.Year.value);

		if(iAge1 < 18 && document.EntryForm.Member.checked==true)
		{
			alert("Paddler1 is under 18 and so cannot apply for DW membership");
			return false;
		}

		if(document.EntryForm.Class.value!="SS")
		{
			if((document.EntryForm.Title2.value=="Mr" || document.EntryForm.Title2.value=="Sir") && document.EntryForm.Gender2.value!="Male")
			{
				alert("Inconsistent Title and Gender for Paddler2");
				return false;
			}
			if((document.EntryForm.Title2.value=="Mrs" || document.EntryForm.Title2.value=="Miss" || document.EntryForm.Title2.value=="Ms") && document.EntryForm.Gender2.value!="Female")
			{
				alert("Inconsistent Title and Gender for Paddler2");
				return false;
			}
			if(IsEmpty(document.EntryForm.Surname2))
			{
				alert("Please fill in Surname for Paddler2");
				return false;
			}
			if(IsEmpty(document.EntryForm.Firstname2))
			{
				alert("Please fill in Firstname for Paddler2");
				return false;
			}
			if(document.EntryForm.Nationality2.value=="Other" && IsEmpty(document.EntryForm.NationalityOther2))
			{
				alert("Please fill in Other Nationality for Paddler2")
				return false;
			}
			if(IsEmpty(document.EntryForm.AddrLine1_2))
			{
				alert("Please fill in Address Line 1 for Paddler2");
				return false;
			}
			if(IsEmpty(document.EntryForm.Postcode2))
			{
				alert("Please fill in Postcode for Paddler2");
				return false;
			}
			if(IsEmpty(document.EntryForm.Email2))
			{
				alert("Please fill in email address for Paddler2")
				return false;
			}
			if(document.EntryForm.Email2.value.indexOf("@")==-1)
			{
				alert("Please enter a correct email address for Paddler2");
				return false;
			}
			if(document.EntryForm.CanoeClub2.value=="Other" && IsEmpty(document.EntryForm.CanoeClubOther2))
			{
				alert("Please fill in Other Canoe Club for Paddler2")
				return false;
			}
			if(document.EntryForm.University2.checked==true)
			{
				if(IsEmpty(document.EntryForm.EdInst2))
				{
					alert("Please enter University name in Eductional Institution for Paddler2")
					return false;
				}
				if(document.EntryForm.EdInst2.value=="Other" && IsEmpty(document.EntryForm.EdInstOther2))
				{
					alert("Please fill in Other University for Paddler2")
					return false;
				}
			}
			if(document.EntryForm.CCF2.checked==true)
			{
				if(IsEmpty(document.EntryForm.EdInst2))
				{
					alert("Please enter School name in Eductional Institution for Paddler2")
					return false;
				}
				if(document.EntryForm.EdInst2.value=="Other" && IsEmpty(document.EntryForm.EdInstOther2))
				{
					alert("Please fill in Other CCF for Paddler2")
					return false;
				}
			}
			if(document.EntryForm.EdInst2.value=="Other" && IsEmpty(document.EntryForm.EdInstOther2))
			{
				alert("Please fill in Other Educational Inst. for Paddler2")
				return false;
			}
			if(CheckMilitaryDetails(document.EntryForm.Military2, document.EntryForm.MilitaryEstA2.checked,document.EntryForm.MilitaryEstB2.checked,document.EntryForm.MilitaryEstC2.checked,document.EntryForm.MilitaryPosA2.checked,document.EntryForm.MilitaryPosB2.checked,document.EntryForm.MilitaryPosC2.checked,false)==false)
			{
				return false;
			}

			if(document.EntryForm.LastDW2.value!="" && document.EntryForm.LastDW2.value < document.EntryForm.Year2.value)
			{
				alert("Paddler2 cannot have paddled the DW before they were born!");
				return false;
			}

			iAge2 = AgeOn1stJanuary(document.EntryForm.Day2.value, document.EntryForm.Month2.value, document.EntryForm.Year2.value);

			if(iAge2 < 18 && document.EntryForm.Member2.checked==true)
			{
				alert("Paddler2 is under 18 and so cannot apply for DW membership");
				return false;
			}

		}

		if(!CheckAgeEligibility(iAge1, iAge2, document.EntryForm.Class.value))
		{
			return false;
		}

		if(document.EntryForm.acceptterms.checked==false)
		{
			alert("Please read and accept the terms and conditions");
			return false;
		}
		
		return true;
	  }

	
	  function CheckCheque()
	  {
	  	var bReturn = false;
	  	
		if(CheckEntry()!=false)
		{
			var answer = confirm("Are you sure you want to pay by cheque?");
			if(answer)
			{
				bReturn = true;
				popup();
			}
		}
		
		return bReturn;
	  }

	  function CheckMilitaryDetails(sMilitary, bNavy, bArmy, bRAF, bRegular, bRegularReserve, bReserve, bPaddler1)
	  {
	  	  var sPaddler;

	  	  if(bPaddler1==true)
	  	  {
	  	  	  sPaddler="Paddler1";
	  	  }
	  	  else
	  	  {
	  	      sPaddler="Paddler2";
	  	  }

	  	  if(!IsEmpty(sMilitary))
	  	  {
	  		  if(bNavy==true || bArmy==true || bRAF==true)
	  		  {
	  		      if(bRegular==true || bRegularReserve==true || bReserve==true)
	  		      {
	  		      }
	  		      else
	  		      {
	  		   	      alert("Please select regular, regular att. reserver or reserve for " + sPaddler);
	  		          return false;
	  		      }
	  		  }
	  		  else
	  		  {
	  		  	  alert("Please select Royal Marines / Navy, Army or RAF for " + sPaddler);
	  		      return false;
	  		  }
	  	  }
	  	  else
	  	  {
	  		  if(bNavy==true || bArmy==true || bRAF==true)
	  		  {
	  			  alert("Please input the name of the military establishment for " + sPaddler);
	  		 	  return false;
	  		  }
			  if(bRegular==true || bRegularReserve==true || bReserve==true)
			  {
				  alert("Please input the name of the military establishment for " + sPaddler);
				  return false;
			  }
	  	  }
	  }

	  function CheckAgeEligibility(iAge1, iAge2, sClass)
	  {
	  	  if(sClass=="SD")
	  	  {
	  	  	  if(iAge1 < 18)
	  	  	  {
	  	  	  	  alert("Age of first paddler is less than 18 on 1st January");
	  	  	  	  return false;
	  	  	  }
	  	  	  if(iAge2 < 18)
	  	  	  {
	  	  	  	  alert("Age of second paddler is less than 18 on 1st January");
	  	  	  	  return false;
	  	  	  }
	  	  }
	  	  else if(sClass=="EN")
		  {
		  	if(iAge1 < 19 && iAge2 < 19)
		        {
			    alert("Only one paddler can be under 19 on 1st of January");
			    return false;
		        }
	  	        else if(iAge1 < 15 || iAge2 < 15)
	  	        {
			    alert("Junior paddlers must be 15 or over on 1st January");
			    return false;
	  	        }
		  }
	  	  else if(sClass=="SS")
	  	  {
	  	  	  if(iAge1 < 18)
	  	  	  {
	  	  	  	  alert("Age of paddler is less than 18 on 1st January");
	  	  	  	  return false;
	  	  	  }
	  	  }
	  	  else if(sClass=="JD")
	  	  {
	  	  	  if(iAge1 < 15 || iAge1 >= 19)
	  	  	  {
	  	  	  	  alert("First junior paddler must be aged between 15 and 18 on 1st of January");
	  	  	  	  return false;
	  	  	  }
	  	  	  if(iAge2 < 15 || iAge2 >= 19)
	  	  	  {
	  	  	  	  alert("Second junior paddler must be aged between 15 and 18 on 1st of January");
	  	  	  	  return false;
	  	  	  }
	  	  }
	  	  else if(sClass=="VJ")
	  	  {
	  	      if(iAge1 < 19 && iAge2 < 19)
	  	      {
	  	      	  alert("Only one paddler can be under 19 on 1st of January");
	  	      	  return false;
	  	      }
	  	      else if(iAge1 < 15 || iAge2 < 15)
	  	      {
				  alert("Junior paddlers must be 15 or over on 1st January");
				  return false;
	  	      }
	  	      else if(iAge1 >= 35 && iAge2 >= 35)
	  	      {
	  	      	  alert("Only one paddler can be over 35 on 1st of January");
	  	      	  return false;
	  	      }
	  	      else if((iAge1 > 18 && iAge1 < 35) || (iAge2 < 35 && iAge2 > 18))
	  	      {
	  	      	  alert("Must be Veteran (over 35) or Junior (under 19) on 1st January");
	  	      	  return false;
	  	      }

	  	  }

	  	  return true;
	  }

	  function AgeOn1stJanuary(iDay, sMonth, iYear)
	  {
	  	  var d = new Date();
	  	  var iCurrentYear;
	  	  var iCurrentMonth;
	  	  var iAge;
	  	  
	  	  iCurrentYear = parseInt(d.getFullYear());
	  	  iCurrentMonth = d.getMonth();
	  	  
	  	  if(iCurrentMonth == 8 || iCurrentMonth == 9 || iCurrentMonth == 10 || iCurrentMonth == 11)
		  	iCurrentYear = iCurrentYear + 1;

	  	  if(sMonth=="Jan" && iDay=="1")
	  	  {
	  	  }
	  	  else
	  	  {
	  	  	  iCurrentYear = iCurrentYear-1;
	  	  }

	  	  iAge = iCurrentYear - iYear;

	  	  return iAge;
	  }

	  function IsEmpty(aTextField)
	  {
	     if ((aTextField.value.length==0) || (aTextField.value==null))
	     {
	        return true;
	     }
	     else if (isWhitespace(aTextField.value))
	     {
	        return true;
		 }
		 else
		 {
	        return false;
	     }
	  }

      function isWhitespace (s)
      {
         // whitespace characters
         var whitespace = " \t\n\r";
	     var i;

	     // Search through string's characters one by one
	     // until we find a non-whitespace character.
	     // When we do, return false; if we don't, return true.

	     for (i = 0; i < s.length; i++)
	     {
			// Check that current character is not whitespace.
			var c = s.charAt(i);

			if (whitespace.indexOf(c) == -1) return false;
	     }

	     // All characters are whitespace.
	     return true;
      }

      function PopulateComboWithSchools(combo)
      {
      	  combo[0].text = "";
      	  combo[1].text = "Abbotsholme School";
      	  combo[2].text = "Bedford School";
      	  combo[3].text = "Blundell's School";      	  
      	  combo[4].text = "Bryanston School";
      	  combo[5].text = "Canford School";
      	  combo[6].text = "Churcher's College";
      	  combo[7].text = "Cokethorpe School";
      	  combo[8].text = "Cranleigh School";
      	  combo[9].text = "Dauntsey's School";
      	  combo[10].text = "Kelly College";
      	  combo[11].text = "Kimbolton School";      	  
      	  combo[12].text = "Lord Wandsworth College";
      	  combo[13].text = "Marlborough College";
      	  combo[14].text = "Royal Hospital School";
      	  combo[15].text = "Wellington College";
      	  combo[16].text = "Yarm School";      	  
      	  combo[17].text = "Other";

      	  combo[0].value = "";
      	  combo[1].value = "Abbotsholme School";
      	  combo[2].value = "Bedford School";
      	  combo[3].value = "Blundell's School";      	  
      	  combo[4].value = "Bryanston School";
      	  combo[5].value = "Canford School";
      	  combo[6].value = "Churcher's College";
      	  combo[7].value = "Cokethorpe School";
      	  combo[8].value = "Cranleigh School";
      	  combo[9].value = "Dauntsey's School";
      	  combo[10].value = "Kelly College";
      	  combo[11].value = "Kimbolton School";      	  
      	  combo[12].value = "Lord Wandsworth College";
      	  combo[13].value = "Marlborough College";
      	  combo[14].value = "Royal Hospital School";
      	  combo[15].value = "Wellington College";
      	  combo[16].value = "Yarm School";      	  
      	  combo[17].value = "Other";
      
      	  return true;
      	  
      }
      
      function PopulateComboWithNationalities(combo)
      {
      	  combo[0].text = "American";
      	  combo[1].text = "British";
      	  combo[2].text = "Australian";
      	  combo[3].text = "Austrian";
      	  combo[4].text = "Belgian";
      	  combo[5].text = "Canadian";
      	  combo[6].text = "Danish";
      	  combo[7].text = "Dutch";
      	  combo[8].text = "French";
      	  combo[9].text = "German";
      	  combo[10].text = "Irish";
      	  combo[11].text = "Italian";
      	  combo[12].text = "Norwegian";
      	  combo[13].text = "Portuguese";
      	  combo[14].text = "South African";
      	  combo[15].text = "Spanish";
      	  combo[16].text = "Swedish";
      	  combo[17].text = "Swiss";
      	  combo[18].text = "Other";
      	  
      	  combo[0].value = "American";
	  combo[1].value = "British";
	  combo[2].value = "Australian";
	  combo[3].value = "Austrian";
	  combo[4].value = "Belgian";
	  combo[5].value = "Canadian";
	  combo[6].value = "Danish";
	  combo[7].value = "Dutch";
	  combo[8].value = "French";
	  combo[9].value = "German";
	  combo[10].value = "Irish";
	  combo[11].value = "Italian";
	  combo[12].value = "Norwegian";
	  combo[13].value = "Portuguese";
	  combo[14].value = "South African";
	  combo[15].value = "Spanish";
	  combo[16].value = "Swedish";
	  combo[17].value = "Swiss";
	  combo[18].value = "Other";
      
      	  combo[1].selected=true;
      
      	  return true;
      }
      
      function PopulateComboWithClubs(combo)
      {
      	combo[0].text = "";
	combo[1].text = "Aberfan CC";
	combo[2].text = "Argyll CC";
	combo[3].text = "Army Canoe Union";
	combo[4].text = "A.D.J. CC";
	combo[5].text = "Addlestone CC";
	combo[6].text = "Addlington CC";
	combo[7].text = "Anker Valley CC";
	combo[8].text = "Artists Rifles CC";
	combo[9].text = "Astley CC";
	combo[10].text = "Baldock & District CC";
	combo[11].text = "Barking & Dagenham CC";
	combo[12].text = "Bath CC";
	combo[13].text = "Banbury & District";
	combo[14].text = "Basingstoke Canal CC";
	combo[15].text = "Bedford School";
	combo[16].text = "Bourne End Jun Sports Club";
	combo[17].text = "Black Swan CC";
	combo[18].text = "Blackwater Valley CC";
	combo[19].text = "Bradford on Avon CC";
	combo[20].text = "Bristol CC";
	combo[21].text = "Bryanston School CC";
	combo[22].text = "Bishops Stortford CC";
	combo[23].text = "Bude CC";
	combo[24].text = "Burton CC";
	combo[25].text = "Cambridge CC";
	combo[26].text = "Cellbridge";
	combo[27].text = "Chester CC";
	combo[28].text = "Chichester CC";
	combo[29].text = "Chelmsford CC";
	combo[30].text = "Cokethorpe School CC";
	combo[31].text = "Cumbernauld & Kilsyth CC";
	combo[32].text = "Dauntseys School CC";
	combo[33].text = "Conway CC";
	combo[34].text = "The Duchy School";
	combo[35].text = "Ealing CC";
	combo[36].text = "Eyot Boat Club";
	combo[37].text = "Elmbridge CC";
	combo[38].text = "Exeter CC";
	combo[39].text = "Fladbury Paddle Club";
	combo[40].text = "Forth CC";
	combo[41].text = "Falcon CC";
	combo[42].text = "Fowey River CC";
	combo[43].text = "Freestyle CC";
	combo[44].text = "Gailey CC";
	combo[45].text = "Glamorgan CC";
	combo[46].text = "Glanford & Scunthorpe CC";
	combo[47].text = "Glasgow CC";
	combo[48].text = "Greyfriars CC";
	combo[49].text = "Griffon CC";
	combo[50].text = "Hastings CC";
	combo[51].text = "Hemel Hempstead CC";
	combo[52].text = "Hereford CC";
	combo[53].text = "Harlow Outdoor Pursuits";
	combo[54].text = "Hythe Scouts";
	combo[55].text = "Hull & District CC";
	combo[56].text = "Irvine CC";
	combo[57].text = "Itchen Valley CC";
	combo[58].text = "Independent";
	combo[59].text = "Integrate Paddling";
	combo[60].text = "International";
	combo[61].text = "Inverness CC";
	combo[62].text = "Kelly College";
	combo[63].text = "Kendal CC";
	combo[64].text = "Kesteven CC";
	combo[65].text = "Kimbolton School CC";
	combo[66].text = "Kingston KC (Hull)";
	combo[67].text = "Kircaldy CC"
	combo[68].text = "Leaside CC";
	combo[69].text = "Leicester CC";
	combo[70].text = "Leighton Buzzard CC";
	combo[71].text = "Lincoln CC";
	combo[72].text = "Linlithgow";
	combo[73].text = "Lord Wandsworth College";
	combo[74].text = "Macclesfield & District CC";
	combo[75].text = "Maidstone CC";
	combo[76].text = "Meridian CC";
	combo[77].text = "Millfield School";
	combo[78].text = "Marlow CC";
	combo[79].text = "Newbury CC";
	combo[80].text = "Northampton CC";
	combo[81].text = "Norwich CC";
	combo[82].text = "Nottingham CC";
	combo[83].text = "Pangbourne CC";
	combo[84].text = "Pennine CC";
	combo[85].text = "Plymouth College CC";
	combo[86].text = "Penzance CC";
	combo[87].text = "Poole Harbour CC";
	combo[88].text = "RAF Canoe Association";
	combo[89].text = "Reading CC";
	combo[90].text = "Royal Hospital School CC";
	combo[91].text = "Richmond CC";
	combo[92].text = "Rabbit Independent Paddlers";
	combo[93].text = "Roxburgh CC";
	combo[94].text = "Royal Leamington Spa CC";
	combo[95].text = "Royal Navy Kayak Association";
	combo[96].text = "Royal CC";
	combo[97].text = "Rugby CC";
	combo[98].text = "Runcorn CC";
	combo[99].text = "South Avon CC";
	combo[100].text = "Sheffield CC";
	combo[101].text = "Shropshire Paddlesport";
	combo[102].text = "Solent KC";
	combo[103].text = "Salmon Leap";
	combo[104].text = "Soar CC";
	combo[105].text = "Solihull";
	combo[106].text = "Southampton CC";
	combo[107].text = "Stirling CC";
	combo[108].text = "Strathclyde University CC";
	combo[109].text = "Sutton Bingham and District CC";
	combo[110].text = "Taunton CC";
	combo[111].text = "Trent College CC";
	combo[112].text = "Tonbridge CC";
	combo[113].text = "Truro & Hayle CC";
	combo[114].text = "University Of Oxford";
	combo[115].text = "Viking KC";
	combo[116].text = "Warrington CC";
	combo[117].text = "Waveney Valley CC";
	combo[118].text = "Winchester CC";
	combo[119].text = "Wellington College";
	combo[120].text = "Westel CC";
	combo[121].text = "Wey KC";
	combo[122].text = "Windsor CC";
	combo[123].text = "Wokingham CC";
	combo[124].text = "Wolverhampton CC";
	combo[125].text = "Worcester CC";
	combo[126].text = "Warren CC";
	combo[127].text = "Wraysbury Scouts";
	combo[128].text = "Whetstone Paddlers";
	combo[129].text = "Other";

	combo[0].value = "";
	combo[1].value = "Aberfan CC";
	combo[2].value = "Argyll CC";
	combo[3].value = "Army Canoe Union";
	combo[4].value = "A.D.J. CC";
	combo[5].value = "Addlestone CC";
	combo[6].value = "Addlington CC";
	combo[7].value = "Anker Valley CC";
	combo[8].value = "Artists Rifles CC";
	combo[9].value = "Astley CC";
	combo[10].value = "Baldock & District CC";
	combo[11].value = "Barking & Dagenham CC";
	combo[12].value = "Bath CC";
	combo[13].value = "Banbury & District";
	combo[14].value = "Basingstoke Canal CC";
	combo[15].value = "Bedford School";
	combo[16].value = "Bourne End Jun Sports Club";
	combo[17].value = "Black Swan CC";
	combo[18].value = "Blackwater Valley CC";
	combo[19].value = "Bradford on Avon CC";
	combo[20].value = "Bristol CC";
	combo[21].value = "Bryanston School CC";
	combo[22].value = "Bishops Stortford CC";
	combo[23].value = "Bude CC";
	combo[24].value = "Burton CC";
	combo[25].value = "Cambridge CC";
	combo[26].value = "Cellbridge";
	combo[27].value = "Chester CC";
	combo[28].value = "Chichester CC";
	combo[29].value = "Chelmsford CC";
	combo[30].value = "Cokethorpe School CC";
	combo[31].value = "Cumbernauld & Kilsyth CC";
	combo[32].value = "Dauntseys School CC";
	combo[33].value = "Conway CC";
	combo[34].value = "The Duchy School";
	combo[35].value = "Ealing CC";
	combo[36].value = "Eyot Boat Club";
	combo[37].value = "Elmbridge CC";
	combo[38].value = "Exeter CC";
	combo[39].value = "Fladbury Paddle Club";
	combo[40].value = "Forth CC";
	combo[41].value = "Falcon CC";
	combo[42].value = "Fowey River CC";
	combo[43].value = "Freestyle CC";
	combo[44].value = "Gailey CC";
	combo[45].value = "Glamorgan CC";
	combo[46].value = "Glanford & Scunthorpe CC";
	combo[47].value = "Glasgow CC";
	combo[48].value = "Greyfriars CC";
	combo[49].value = "Griffon CC";
	combo[50].value = "Hastings CC";
	combo[51].value = "Hemel Hempstead CC";
	combo[52].value = "Hereford CC";
	combo[53].value = "Harlow Outdoor Pursuits";
	combo[54].value = "Hythe Scouts";
	combo[55].value = "Hull & District CC";
	combo[56].value = "Irvine CC";
	combo[57].value = "Itchen Valley CC";
	combo[58].value = "Independent";
	combo[59].value = "Integrate Paddling";	
	combo[60].value = "International";
	combo[61].value = "Inverness CC";
	combo[62].value = "Kelly College";
	combo[63].value = "Kendal CC";
	combo[64].value = "Kesteven CC";
	combo[65].value = "Kimbolton School CC";
	combo[66].value = "Kingston KC (Hull)";
	combo[67].value = "Kircaldy CC";
	combo[68].value = "Leaside CC";
	combo[69].value = "Leicester CC";
	combo[70].value = "Leighton Buzzard CC";
	combo[71].value = "Lincoln CC";
	combo[72].value = "Linlithgow";
	combo[73].value = "Lord Wandsworth College";
	combo[74].value = "Macclesfield & District CC";
	combo[75].value = "Maidstone CC";
	combo[76].value = "Meridian CC";
	combo[77].value = "Millfield School";
	combo[78].value = "Marlow CC";
	combo[79].value = "Newbury CC";
	combo[80].value = "Northampton CC";
	combo[81].value = "Norwich CC";
	combo[82].value = "Nottingham CC";
	combo[83].value = "Pangbourne CC";
	combo[84].value = "Pennine CC";
	combo[85].value = "Plymouth College CC";
	combo[86].value = "Penzance CC";
	combo[87].value = "Poole Harbour CC";
	combo[88].value = "RAF Canoe Association";
	combo[89].value = "Reading CC";
	combo[90].value = "Royal Hospital School CC";
	combo[91].value = "Richmond CC";
	combo[92].value = "Rabbit Independent Paddlers";
	combo[93].value = "Roxburgh CC";
	combo[94].value = "Royal Leamington Spa CC";
	combo[95].value = "Royal Navy Kayak Association";
	combo[96].value = "Royal CC";
	combo[97].value = "Rugby CC";
	combo[98].value = "Runcorn CC";
	combo[99].value = "South Avon CC";
	combo[100].value = "Sheffield CC";
	combo[101].value = "Shropshire Paddlesport";
	combo[102].value = "Solent KC";
	combo[103].value = "Salmon Leap";
	combo[104].value = "Soar CC";
	combo[105].value = "Solihull";
	combo[106].value = "Southampton CC";
	combo[107].value = "Stirling CC";
	combo[108].value = "Strathclyde University CC";
	combo[109].value = "Sutton Bingham and District CC";
	combo[110].value = "Taunton CC";
	combo[111].value = "Trent College CC";
	combo[112].value = "Tonbridge CC";
	combo[113].value = "Truro & Hayle CC";
	combo[114].value = "University Of Oxford";
	combo[115].value = "Viking KC";
	combo[116].value = "Warrington CC";
	combo[117].value = "Waveney Valley CC";
	combo[118].value = "Winchester CC";
	combo[119].value = "Wellington College";
	combo[120].value = "Westel CC";
	combo[121].value = "Wey KC";
	combo[122].value = "Windsor CC";
	combo[123].value = "Wokingham CC";
	combo[124].value = "Wolverhampton CC";
	combo[125].value = "Worcester CC";
	combo[126].value = "Warren CC";
	combo[127].value = "Wraysbury Scouts";
	combo[128].value = "Whetstone Paddlers";
	combo[129].value = "Other";
	
        return true;

      }
      
//-->