// <![CDATA[
		function check_form(){ //form validation script
				if(document.contact.first_name.value==""){
						alert('We would really like to know your first name.');
						document.contact.first_name.focus(); 
						return false;
				}
				if(document.contact.last_name.value==""){
						alert('Please tell us your last name.');
						document.contact.last_name.focus(); 
						return false;
				}
				if(document.contact.email.value==""){
						alert('Please give us your email address. We will not save it or add you to a spam list.');
						document.contact.email.focus(); 
						return false;
				}
				if(document.contact.comments.value==""){
						alert("Do you really want to give us your name and email address without asking a question or posting a comment?");
						document.contact.comments.focus(); 
						return false;
				}
				var ct = new Date();
				var time = ct.getTime();				
				if(document.contact.captcha.value!=time){
						alert("It appears you were not successful in picking Buzz.");
						return false;
				}
				return true;
		}
		
		function toggleCaptcha($id, $value, $num) {		
			for($x=0; $x<=$num; $x=$x+1) {
				var o = document.getElementById($x);
				o.style.borderColor="#7D5B09";
			}
			var o = document.getElementById($id);		
			o.style.borderColor = "#FCDE6B";
			if($value==1) {
				document.getElementById("captchaWrong").style.visibility = "hidden";			
				document.getElementById("captchaCorrect").style.visibility = "visible";
				document.getElementById("burdell").setAttribute('value', 1);
			} else {
				document.getElementById("captchaWrong").style.visibility = "visible";			
				document.getElementById("captchaCorrect").style.visibility = "hidden";
				document.getElementById("burdell").setAttribute('value', 0);
			}
		}
		
// ]]>