function processRegistration()
{
var email = $("#contactemail").val();
$.ajax({
                type: "GET",
                url: "process.aspx?e=" + email,
                success: function (msg) {
                    $("#firstNotify").hide();
                    $("#secondNotify").show();
                },
		error: function(msg) {
			alert('Please try later');
		}
            });
return false;
}

function checkKey(event)
{
  if(event.keyCode == 13){
    processRegistration();
  }
};

$(document).ready(function(){
		$("#secondNotify").hide();
	});


