
	function mmSubscribe()
	{
		var s = trim(document.frmMM.Email.value);
		if (s.length == 0)
		{
			alert('You must specify your e-mail address');
			return;
		}

		if (isValidEmailAddress(s) == false)
		{
			alert('The entered e-mail address is invalid');
			return;
		}

		var s = trim(document.frmMM.ConfirmEmail.value);
		if (s.length == 0)
		{
			alert('You must confirm your e-mail address by entering it a second time ');
			return;
		}

		
		if (trim(document.frmMM.ConfirmEmail.value) != trim(document.frmMM.Email.value))
		{
			alert('You e-mail address and its confirmation do not match!  Please correct and try again.');
			return;
		}
		
		document.frmMM.Action.value = 'info2go';
		document.frmMM.submit();
		
	}