var notice_Num;

function AddNotice(text)
{

	notice_Num++;
	
	s = $("#notice").html();
	
	id = 'N_' + notice_Num;
	s = s + '<DIV class="notice" id="' + id + '">&nbsp;&nbsp;&nbsp;&nbsp;' + text + '<DIV class="notice_close" onClick="$(\'#' + id + '\').fadeOut();"></DIV></DIV>';
	
	$("#notice").html(s);
}