// script for closing the flash message

function close_flashmsg() {
	obj = document.getElementById('flashmsg');
	if(obj)
		obj.style.display = 'none';
}

