function confirmSubmit()
{
var agree=confirm("BY SUBMITTING THIS FORM YOU AGREE TO THE FOLLOWING STATEMENTS:\n\nI agree that this matter may be referred to an attorney in my area who may contact me.\n\nI agree that by submitting this question, I will not be charged for the initial response. I understand that I am forming only a semi-confidential relationship.\n\nI agree that submitting this form does not constitute a request for legal advice and further that I am not forming an attorney client relationship by submitting this form. I understand that I may only retain an attorney by entering into a fee agreement, and that I am not hereby entering into a fee agreement. I agree that the information that I will receive in response to this form inquiry is general information and I will not be charged for the initial response. I understand furtherthat the law for each state may vary, and therefore, I will not rely upon this information as legal advice. Since this matter may require advice regarding my home state, I agree that local counsel may be contacted for referral of this matter.\n\n");
if (agree)
	return true ;
else
	return false ;
}