function CheckForm(thisForm) {
if (thisForm.name.value == "") {
		alert('Enter Name!');
		return false;		
		}
	else if (thisForm.email.value == "") {
		alert('Enter E-mail!');
		return false;
		}
	else if (thisForm.title.value == "") {
		alert('Enter Ad Title!');
		return false;		
		}
	else if (thisForm.message.value == "") {
		alert('Enter Message!');
		return false;		
		}
	else if (thisForm.captcha.value == "") {
		alert('Enter the random Captcha charachters into the box provided!');
		return false;		
		}
	return true;
}