function styleAbbr() {
        var oldBodyText, newBodyText, reg;
        if (navigator.appName == "Microsoft Internet Explorer") {
                oldBodyText = document.body.innerHTML;
                reg = /<(ABBR|ACRONYM)([^>]+)>([^<]+)<\/(ABBR|ACRONYM)>/g;
                newBodyText = oldBodyText.replace(reg, '<$1 $2><SPAN class=\"abbr\" $2>$3</SPAN></$4>');
                document.body.innerHTML = newBodyText;
        }
}

function fixWidths() {
        if (navigator.appName == "Microsoft Internet Explorer" ) {
//min-width of header
 var minWidth = 920;
if (document.body.clientWidth < minWidth) {
             var newWidth = minWidth + "px";
             document.getElementById("container").style.width = newWidth;
             document.getElementById("header").style.width = newWidth;
			 document.getElementById("ctable").style.width = newWidth;
           }
           
//max-width of content and tables (in em)
           var maxWidth = 1280;
           if (document.body.clientWidth > maxWidth) {
             var newWidth = maxWidth + "px";
             document.getElementById("container").style.width = newWidth;
             document.getElementById("header").style.width = newWidth;
			 document.getElementById("ctable").style.width = newWidth;
           }
         }
}

IE_version=0;
if (navigator.appVersion.indexOf("MSIE") != -1) {
	var temp=navigator.appVersion.split("MSIE");
	IE_version=parseFloat(temp[1]);
}

window.onload = function(){
        //styleAbbr();
        fixWidths();
//avoid wrapping the NAV bar
        
       
}

window.onresize = fixWidths();