//
// ie6_fix_top
//
// This script will correct issues with CSS support where pages are set
// to a given width and centered.  This code would be executed immediately
// after the <body> tag.
//

msieStringLoc = navigator.userAgent.indexOf("MSIE");
if (msieStringLoc != -1)
{
    msieVersion = parseFloat(navigator.userAgent.substring(msieStringLoc+5));
    if (msieVersion < 7)
    {
        document.writeln("<center><table width=\"850px\"><tr><td>");
    }
}
