function MsgSend() {

	if (FormValid()) {

		$('#msgUiStep1_p').hide();
		$('#msgUiStep1').hide();
		$('#msgUiStep2').slideDown('fast');

		var frm = new FormData();
		frm.append('nmp1', document.getElementById('nameInp').value);
		frm.append('nmp2', document.getElementById('emInp').value);
		frm.append('nmp3', document.getElementById('mesInp').value);

		var xhr = new XMLHttpRequest();
		xhr.onreadystatechange = function(e) {
			if (e.target.readyState == 4) {
				uiStep3();
			}
		}
		xhr.open('post', 'http://ivexe.com/msg.php');
		xhr.send(frm);

	}

//	setTimeout('uiStep3()', 1000);

}



function uiStep3() {
	$('#msgUiStep2').hide();
	$('#msgUiStep3').slideDown('fast');
}



function FormValid() {
	var inp;
	inp = document.getElementById('nameInp');
	if (inp && inp.value == '') {
		$(inp).css({'border':'2px solid #f00'});
		inp.focus();
		return false;
	}
	inp = document.getElementById('emInp');
	if (inp && inp.value == '') {
		$(inp).css({'border':'2px solid #f00'});
		inp.focus();
		return false;
	}
	inp = document.getElementById('mesInp');
	if (inp && inp.value == '') {
		$(inp).css({'border':'2px solid #f00'});
		inp.focus();
		return false;
	}
	return true;
}

