 function mailbuild_form_check() 
{
		$.post("/contact/signup", { 
				'ajax' : true, 
				'mb-name' : $('#signup_name').val(), 
				'mb-utou-utou' : $('#signup_email').val() 
		}, function(data) {
				
					Shadowbox.init({ skipSetup: true });
					Shadowbox.open({
							type: 				'html',
							title:      	'',
							content:    	data, 
							height:     	200,
							width:      	350
					});

		});
		return false;
}

