Fix flashing background images in IE6
To eliminate blinking, you need to connect a small JavaScript code to the web page:
var m = document.uniqueID
&& document.compatMode
&& !window.XMLHttpRequest
&& document.execCommand;
try{
if(!!m)
{
m("BackgroundImageCache", false, true)
}
}
catch(oh){};