YAHOO.si.Progress = 
{
	msg:{},
	img:"<img src=\"/App_Themes/Ryoko03/images/progress.gif\"/>",
	init:function()
	{
		if(!YAHOO.util.Dom.inDocument("msg"))
		{
			throw "The element 'msg' seems to missing from the document";
		}
		this.msg = document.getElementById("msg");		
	},
	show:function(msg,show)
	{
		if(show)
		{
			this.msg.innerHTML = this.img +" " + msg;
		}
		else
		{
			this.msg.innerHTML = msg ;		
			window.setTimeout(function() {
				YAHOO.si.Progress.msg.innerHTML = "";					
			},1000);			
		}
	}
};