// JavaScript Document
GRCImages = 
{
	getImg:null,
	getImage2:function(imageSrc)
	{
		GRCImages.getImg.src = imageSrc;
	},
	getImage:function(imageSrc)
	{
		with (GRCImages)
		{
			getImg = new Image();
			getImg.src = imageSrc;
			if (getImg.width == 0)
			{
				for (i = 0; (i < 10) && (getImg.width == 0); i++)
				{
					setTimeout("getImage2(imageSrc)",200);
				}
			}
		}	//	with
		return GRCImages.getImg;
	}
}

