function greenbox(msg, id, kind) {
	var box = createGreenbox(msg, id);
	
	if(kind == "append") {
		$('#' + id).append(box);
	}
	else if(kind == 'prepend') {
		$('#' + id).prepend(box);
	}
	else {
		$('#' + id).html(box);
	}
	$("#divbox_greenbox_" + id).show("bounce", { times: 3 }, 200);
/* 	$(".alertbox").bind("click", function() { $(this).hide("clip"); });  */
	setTimeout('$(".alertbox").hide("clip");', 5000); 
}

function createGreenbox(msg, id) {
	var html = '';
	html += '<div class="alertbox greenbox" id="divbox_greenbox_' + id + '" style="display: none;">';
	html += '<div class="alertbox_img"><img src="/static/img/default/icon_green.png" /></div>';
	html += '<div class="alertbox_msg greenbox_msg" id="divbox_greenbox_msg_' + id + '">' + msg + '</div>';
	html += '<div class="clear"></div>';
	html += '</div>';
	return html;
}
