// stopFlicker.js
// by Chris Adkins
// Problem : IE displays a flickering effect when internet option settings are set to Every time I visit the webpage.
// Solution: This program checks browser name -- if it's Internet Explorer it disables BackgroundImageCache
// Add this javascript right after the <body> tag

var browserName=navigator.appName;
if (browserName=="Microsoft Internet Explorer")
 {
	javascript:void(document.execCommand("BackgroundImageCache",false,true))
 }
