// workaround for IE's lack of support for CSS 'max-width' attribute
function maxWidthIE(){ // slightly neater - no iteration through the DIVs
var Xagt=navigator.userAgent.toLowerCase();
var Xis_ie = ((Xagt.indexOf("msie") != -1) && (Xagt.indexOf("opera") == -1));
if (Xis_ie == true){
	if(document.getElementsByTagName){
		window.onresize = new Function("window.location.reload()")
		var XmaxWidth = 759;
		var Xwidth;
		if (document.body.clientWidth > 759){Xwidth = XmaxWidth + "px";}
		else{Xwidth = "auto";}
		document.body.style.width = Xwidth;
		} // end if 
	} // if is_ie
} // end function
