function checkIE()
{		
	if((navigator.userAgent.indexOf("MSIE 6") >= 0)) 
	{
   		var ie6Blocker = document.createElement("div");
   				
   		document.body.appendChild(ie6Blocker);
   				
   		ie6Blocker.innerHTML = "Sorry, we no longer support Internet Explorer 6 or 7. To view the site correctly please use a more recent browser.";
   		ie6Blocker.style.color = "red";
   		ie6Blocker.style.backgroundColor = "white";
   		ie6Blocker.style.position = "absolute";
   		ie6Blocker.style.padding = "1%";
   		ie6Blocker.style.top = "0px";
   		ie6Blocker.style.left = "0px";
   		ie6Blocker.style.height = "20px";
   		ie6Blocker.style.width = "98%";
        
        ie6Blocker.style.display = "inline-block";
		
	}
}


oldOnLoad = window.onload;
		
window.onload = function() 
{
	checkIE();
	oldOnLoad();
}
