function notify_add(div){
document.getElementById(''+div+'').style.display='block';
	
new Effect.Highlight(div, { startcolor: '#ffff99',endcolor: '#ffffff' }); 

setTimeout('hide_div("'+div+'")',3000);
}

function hide_div(div){
	document.getElementById(''+div+'').style.display='none';
	}