				var numLists = 1;

				function doCheckCount(ccObj)
				{
					if(ccObj.checked)
						numLists = numLists + 1;
					else
						numLists = numLists - 1;
				}

				function CheckSS()
				{
					theFrm = document.frmSS;

					hasDot = theFrm.Email.value.indexOf(".");
					hasAt = theFrm.Email.value.indexOf("@");

					if(hasDot + hasAt < 0)
					{
						alert("Please enter a valid email address.");
						theFrm.Email.focus();
						theFrm.Email.select();
						return false;
					}

					if(numLists == 0)
					{
						alert("Please choose a mailing list to subscribe to.");
						return false;
					}
					

									if(theFrm.elements[4].value == "")
									{
										alert("Please enter a value for the 'First Name' field.");
										theFrm.elements[4].focus();
										theFrm.elements[4].select();
										return false;
									}
								

									if(theFrm.elements[5].value == "")
									{
										alert("Please enter a value for the 'Last Name' field.");
										theFrm.elements[5].focus();
										theFrm.elements[5].select();
										return false;
									}
								

									if(theFrm.elements[6].value == "")
									{
										alert("Please enter a value for the 'Postal Code' field.");
										theFrm.elements[6].focus();
										theFrm.elements[6].select();
										return false;
									}
								
					
					return true;
				}
