$(function() {
	if($("#msg").html()){
      	 showMsg();
	}else{
		$("#msg").hide();
	}
	
	if($("#err").html()){
		$("#err").dialog({
			show: 'clip',
			hide: 'clip',
			modal: true,
			buttons:{
				OK:function(){
					$(this).dialog("close");
					if($("#loginForm"))$("#loginForm").dialog("open");
				}
			}	
		});	
	}else{
		$("#err").hide();
	}

});

function showMsg(msg){
	if(msg)$("#msg").html(msg);
	
	$("#msg").dialog({
		show: 'clip',
		hide: 'clip'	
	});
	
	setTimeout(function(){  
 		$("#msg").dialog("close"); 
  	},2000);
}
