function focuson(){
	document.contactForm.contactCaptcha.focus()
}

function check(){
	if(document.contactForm.contactCaptcha.value==0){
		alert("Please type the characters in the field below.");
		document.contactForm.contactCaptcha.focus();
		return false;
	}
}
