function ShowMsgBox(text, cls) {
	$('#box').hide();
	$('#box').remove();
	
	$('<div class="' + cls + '" id="box"><div>' + text + '</div></div>').appendTo('body');

	return $('#box');
}
