function message(msg) {
	$(document).ready(function() { 

			$.blockUI({ 
				message: msg, 
				fadeIn: 700, 
				fadeOut: 700, 
				timeout: 2000, 
				showOverlay: false, 
				centerY: false, 
				css: { 
					width: '350px', 
					top: '50%', 
					left: '550px', 
					right: '10px', 
					border: 'none', 
					padding: '5px', 
					backgroundColor: '#000', 
					'-webkit-border-radius': '10px', 
					'-moz-border-radius': '10px', 
					opacity: .6, 
					color: '#fff' 
				} 
			}); 
	 
	});
}
