var NotifyDialog = function(){
	
	function show(text, err){
		var opts = null;
			if (isFalse(err)){
				opts = {
						pnotify_title: INFO_TITLE,
						pnotify_text: text,
						pnotify_delay: 2000
				}
			}else{
				opts = {
						pnotify_title: INFO_TITLE,
						pnotify_text: text,
						pnotify_type: 'error',
						pnotify_delay: 2000
				}
			}
			
			$.pnotify(opts);	
	}
	
	
	return {
		
		notify: function(text){
			show(text, false);
		},
		
		error: function (text){
			show(text, true);
		}
		
	}
	
}();
