//Description:   Patch to address a bug in IE6 SP1 that causes spacer images (1x1.gif) to not be loaded
//Author:        Steve Eidemiller
//Created:       02/27/2003
//Remarks:       Browser detection in this script is intentionally sparse and designed to detect only IE6 SP1

/**************************************************************************
Revision History:

**************************************************************************/

//Verify that we're running IE6 SP1
if (navigator.appName == "Microsoft Internet Explorer" && navigator.userAgent.indexOf("MSIE 6.0") > -1 && navigator.appMinorVersion.indexOf("SP1") > -1)
{
	//Assign an event handler to the Body_onLoad() event
	document.body.onload = function()
	{
		//For (each image on this page)...
		for (var i = 0; i < document.images.length; i++)
		{
			//If (the image has not loaded) Then try and force a re-load by reassigning the URL to .src
			if (!document.images[i].complete) document.images[i].src = document.images[i].src;
		}
	};
}