	function checkMe(){
		var send = '';
		var email = document.PostMe.Email.value;
		var thename = document.PostMe.TheName.value;
		var checksub = document.PostMe.Subject.value.toLowerCase();
		var checkmes = document.PostMe.Message.value.toLowerCase();
		if (document.PostMe.Subject.value == '') {
			send = 0;
			alert("Please enter a subject for your post.")
			document.PostMe.Subject.focus();
		}
		else {
			if((checksub.indexOf('d_d@mweb') > -1) || (checksub.indexOf('fatandfedup') > -1) || (checkmes.indexOf('fatandfedup') > -1) || (checksub.indexOf('clitoris.com') > -1) || (checkmes.indexOf('clitoris.com') > -1) || (checkmes.indexOf('clitical') > -1)){
				send = 0;
				alert('This forum allows our users to interact with health professionals and is not meant for free advertising.\n\nIf you are interested in advertising on our site please contact us on 021 406 3602 and request the rate card.');
			}
			else{
				if(document.PostMe.Message.value == ''){
					send = 0;
					alert("Please enter your message before posting it.");
					document.PostMe.Message.focus();
				}
				else{
					if(document.PostMe.TheName.value == ''){
						send = 0;
						alert("Please enter your nick name. This does not have to be your real name.");
						document.PostMe.TheName.focus();
					}
						else{
							if(document.PostMe.newsletter.value == 1){
								if(document.PostMe.Email.value == ''){
									send = 0;
									alert('You opted to receive our interesting newsletter but forgot to enter your email address.\nPlease enter your email address or untick the newsletter box.');
									document.PostMe.Email.focus();
								}
								else{
									if(email.indexOf('@') == -1){
										send = 0;
										alert('It seems your email address contains errors.\nPlease ensure that it is correct and resubmit your post.');
										document.PostMe.Email.focus();
									}
									else{
										send = 1;
									}
								}
							}
							else{
								if(document.PostMe.Email.value != ''){
									if(email.indexOf('@') > 0){
										send = 1;
									}
									else{
										send = 0;
										alert('It seems your email address contains errors.\nPlease ensure that it is correct and resubmit your post.');
										document.PostMe.Email.focus();
									}
								}
								else{
									send = 1;
								}
							}
						}
					
				}
			}
		}
		if(send == 1){
			document.PostMe.submit();
		}
	}

	function newsme(){
		if(document.PostMe.newstick.checked){
			document.PostMe.newsletter.value = 1;
		}
		else{
			document.PostMe.newsletter.value = 0;
		}
	}
	
	function promoteMe(){
		if(document.PostMe.promotick.checked){
			document.PostMe.promotion.value = 1;
		}
		else{
			document.PostMe.promotion.value = 0;
		}
	}
