function doLoad()
	{
	// After changing the xsl to not include the src for the image tags
	xslTarget.innerHTML = source.transformNode(style.XMLDocument);
	window.setTimeout("addImg()",1);
	
	}
	function addImg()
	{
		var imgs;
		imgs = document.body.all.tags("IMG");
		var srcs=source.selectNodes("//Path");
		
		var len=imgs.length;
		for(i=0;i<len;i++)
		{
			imgs[i].src=srcs(i).text;
		}
	}
	