/**
* Copyright Fluent2.com 2007
**/


function SubmitQuestion(){
	FORM = document.AskQuestion;
	FORM.name.style.borderColor="#6F2C3E";
	FORM.email.style.borderColor="#6F2C3E";
	FORM.message.style.borderColor="#6F2C3E";
	if(FORM.name.value.length < 3){
		FORM.name.style.borderColor="Red";
		alert("ERROR: Name not Entered!\n\nPlease type your name, the way you would like it published.");
		return false;
	}
	if(ValidateeMail(FORM.email.value) == false){
		FORM.email.style.borderColor="Red";
		alert("ERROR: Your eMail address is incorrect.\n\nPlease check your eMail address and try again.");
		return false;
	}
	if(FORM.message.value.length < 10){
		FORM.message.style.borderColor="Red";
		alert("ERROR: You have not asked a question!\n\nPlease type in your question and try again.");
		return false;
	}
	FORM.target="iFrame";
	FORM.method="post";
	FORM.action="PROCESS_questions.php";
	FORM.Button.value="PLEASE WAIT";
	FORM.Button.disabled=true;
	FORM.Button.className="ButtonProcessing ButtonRight";
	setTimeout("document.AskQuestion.submit()", 1000);
}
