/**
* load image on the fly, to avoid loading graphs after phpAds banners
*/
function initGraph(url,elem)
{
	if (url != '')
	{
		img = new Image();
		img.src = url;
		document.getElementById(elem).style.display = '';
		document.getElementById(elem).src = img.src;
	}
}
