<!-- Original:  Glenn Wang (brief@ix.netcom.com) -->
<!-- Web Site:  http://capsule.bayside.net/ -->

<!-- Modified by Ronnie T. Moore (The JavaScript Source) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function countChoices2(obj) {
max = 2; // max. number allowed at a time

checkbox1 = obj.form.b2limittwo1.checked;  // your checkboxes here
checkbox2 = obj.form.b2limittwo2.checked;
checkbox3 = obj.form.b2limittwo3.checked;  // add more if necessary
checkbox4 = obj.form.b2limittwo4.checked;
checkbox5 = obj.form.b2limittwo5.checked;
checkbox6 = obj.form.b2limittwo6.checked;
checkbox7 = obj.form.b2limittwo7.checked;
checkbox8 = obj.form.b2limittwo8.checked;

count = (checkbox1 ? 1 : 0) + (checkbox2 ? 1 : 0) + (checkbox3 ? 1 : 0) + (checkbox4 ? 1 : 0) + (checkbox5 ? 1 : 0) + (checkbox6 ? 1 : 0) + (checkbox7 ? 1 : 0) + (checkbox8 ? 1 : 0);
// If you have more checkboxes on your form
// add more  (box_ ? 1 : 0)  's separated by '+'

if (count > max) {
alert("Oops!  You can only choose up to " + max + " selections! \nUncheck an option if you want to pick another or EXTRA selections can be added with a small fee of $2.20(pp) per selection. Use the \"Special Requirements\" box in the \"Booking Details\" Tab to add your requests.");
obj.checked = false;
   }
}
//  End -->
