// Death to IE6
// <script src="http://www.smallsharptools.com/downloads/JavaScript/ie6death.js" 
//    type="text/javascript"></script>

if (navigator.userAgent.indexOf('MSIE 6.0') != -1)
{
  alert('You are using a very, very old browser. You will be redirected to more information.');
  location.href='http://iedeathmarch.org/';
}
