// Use this variable to determinate if the request member ship form was send or not.
var isInviteFormSent = false;

function sendRequestMemberShipForm () {
	
	if (!isInviteFormSent) {
		
		isInviteFormSent = true;
		document.requestMemberShipForm.submit();
	}
} // sendInviteForm.