function replaceInnerHtml(id, text)
{
	if (id) {
		id.innerHTML = text;
	} else {
		alert('flash id not found');
	}	
}
