/**
* version #1.0
* package Recyclesources Portal
* date 2007/11
* author Justin hsu 
* email bignostriltao@gmail.com
* copyright protected
*/
function showLoading(elId,imgurl)
{
	var el = document.getElementById(elId);

	if (imgurl=='' || imgurl==undefined)
	{
		el.innerHTML = "<img src='http://iweb.recyclesources.com/js/loading.gif'>";
	}
	else
	{
		el.innerHTML = "<img src='"+imgurl+"'>";
	}
}