$(document).ready(function() {
  	
  	$('#continue').click(
		function(e) {
			e.preventDefault();
			
		    $('#continue').attr({ disabled: true });
		    $('#status').html("<span style='color: #999999;'>Working...Please wait.</span>");
		    			
			var data = $('form').serialize();
			
			$.post('sponsor-do.php',data,
				function(response) {
				var array = response.split("|");
				if(array[0] == "1") {
				window.location = array[1];
				} else {
				$('#status').html(array[1]);
				$('#continue').attr({ disabled: false });
				}
				
				});
		
		
		
		});
	
	

});
